nasm: imported from OE - needed for syslinux

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1889 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Marcin Juszkiewicz 2007-06-08 08:33:35 +00:00
parent ac6c773b39
commit ff2d75b7ea
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,4 @@
SECTION = "unknown"
require nasm_${PV}.bb
S = "${WORKDIR}/nasm-${PV}"
inherit native

View File

@ -0,0 +1,15 @@
DESCRIPTION = "General-purpose x86 assembler"
SECTION = "devel"
LICENSE = "GPL"
COMPATIBLE_HOST = '(x86_64|i.86.*)-(linux|freebsd.*)'
SRC_URI = "${SOURCEFORGE_MIRROR}/nasm/nasm-${PV}.tar.bz2"
inherit autotools
do_install() {
install -d ${D}${bindir}
install -d ${D}${mandir}/man1
oe_runmake 'INSTALLROOT=${D}' install
}