summaryrefslogtreecommitdiff
path: root/package/syslinux
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-12-30 22:52:51 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-12-30 22:52:51 +0100
commit58d31896056e604185acf3606b99257cea519dd1 (patch)
tree3a0fb34da5dbe8dc12326fcd7fbf0c3916028f41 /package/syslinux
parent220a96f9926788ed531717f78e44fdf1e7ab3b34 (diff)
parent845317b460ee99ad633534cad4de72404af7e30b (diff)
resolve merge conflicts
Diffstat (limited to 'package/syslinux')
-rw-r--r--package/syslinux/Makefile28
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