summaryrefslogtreecommitdiff
path: root/package/kmod
diff options
context:
space:
mode:
authorWaldemar Brodkorb <mail@waldemar-brodkorb.de>2012-07-27 10:45:02 +0200
committerWaldemar Brodkorb <mail@waldemar-brodkorb.de>2012-07-27 10:45:02 +0200
commit42dd254f5937274f164a5a7c5fb3c1f80e38e7af (patch)
tree9d2f1aa0333e04af8493d6a5f533b6e243bf5d2b /package/kmod
parent7f0a66667a815bb8e28b4c8b93666b92a667b485 (diff)
full build on Darwin fixes
Diffstat (limited to 'package/kmod')
-rw-r--r--package/kmod/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/package/kmod/Makefile b/package/kmod/Makefile
new file mode 100644
index 000000000..1f98e095d
--- /dev/null
+++ b/package/kmod/Makefile
@@ -0,0 +1,29 @@
+# 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:= kmod
+PKG_VERSION:= 5
+PKG_RELEASE:= 1
+PKG_MD5SUM:= b271c2ec54aba1c67bda63c8579d8c15
+PKG_DESCR:= kernel module loading library
+PKG_SECTION:= libs
+PKG_URL:= http://profusion.mobi/index.php
+PKG_SITES:= http://packages.profusion.mobi/kmod/
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.xz
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,KMOD,kmod,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+kmod-install:
+ $(INSTALL_DIR) $(IDIR_KMOD)/usr/bin
+ $(INSTALL_DIR) $(IDIR_KMOD)/usr/lib
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/kmod \
+ $(IDIR_KMOD)/usr/bin
+ $(CP) $(WRKINST)/usr/lib/libkmod*.so* \
+ $(IDIR_KMOD)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk