diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-23 20:41:15 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-23 20:41:15 +0100 |
commit | 845317b460ee99ad633534cad4de72404af7e30b (patch) | |
tree | d458cd1bccc932a3261c11b306df64bf50c0d119 /package/syslinux/Makefile | |
parent | c69912d5e2c55587897bb75de3512082e382abae (diff) |
add new packages syslinux, nasm and qemu (not perfect..)
Diffstat (limited to 'package/syslinux/Makefile')
-rw-r--r-- | package/syslinux/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/package/syslinux/Makefile b/package/syslinux/Makefile new file mode 100644 index 000000000..c5b8de89c --- /dev/null +++ b/package/syslinux/Makefile @@ -0,0 +1,28 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= syslinux +PKG_VERSION:= 4.03 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 086ac1c569d226a5e2ae3d605de09a1d +PKG_DESCR:= lightweight bootloaders +PKG_SECTION:= misc +PKG_BUILDDEP:= nasm +PKG_URL:= http://syslinux.zytor.com/wiki/index.php/The_Syslinux_Project +PKG_SITES:= http://www.kernel.org/pub/linux/utils/boot/syslinux/ + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,SYSLINUX,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIG_STYLE:= manual +FAKE_FLAGS+= INSTALLROOT=${WRKINST} + +post-install: + $(INSTALL_DIR) $(IDIR_SYSLINUX)/usr/bin + $(INSTALL_BIN) $(WRKINST)/usr/bin/syslinux \ + $(IDIR_SYSLINUX)/usr/bin + +include ${TOPDIR}/mk/pkg-bottom.mk |