blob: 0aee9f9faf241c554cc8322f355c5fdfc497e1a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
SECTION = "devel"
DESCRIPTION = "General-purpose x86 assembler"
MAINTAINER = "Phil Blundell <pb@handhelds.org>"
COMPATIBLE_HOST = 'i.86.*-(linux|freebsd.*)'
LICENSE = "GPL"
SECTION = "dev-lang"
SRC_URI = "${SOURCEFORGE_MIRROR}/nasm/nasm-${PV}.tar.bz2"
inherit autotools
do_install() {
install -d ${D}/${bindir}
install -d ${D}/${datadir}/man/man1
oe_runmake 'INSTALLROOT=${D}' install
}
|