summaryrefslogtreecommitdiff
path: root/package/skalibs/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-09-03 20:44:23 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-09-03 20:45:28 +0200
commit17503c1de144fd5afcbfa23796c3d92a5f1cfde6 (patch)
treeca4749984b9cea7d93db5b30d4032b2ded0ba08e /package/skalibs/Makefile
parent85f641f2252073f492fe356b5130e5c1fc1f8d32 (diff)
add basic support for s6 init system
Diffstat (limited to 'package/skalibs/Makefile')
-rw-r--r--package/skalibs/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/package/skalibs/Makefile b/package/skalibs/Makefile
new file mode 100644
index 000000000..cc3b48a6a
--- /dev/null
+++ b/package/skalibs/Makefile
@@ -0,0 +1,31 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+
+PKG_NAME:= skalibs
+PKG_VERSION:= 2.3.10.0
+PKG_RELEASE:= 1
+PKG_HASH:= e4d5147941055b2a367794666f773a4b216c3ae83c015a5fcf2cd0498470ea44
+PKG_DESCR:= general purpose libraries
+PKG_SECTION:= libs/misc
+PKG_URL:= http://www.skarnet.org/software/skalibs/
+PKG_SITES:= http://www.skarnet.org/software/skalibs/
+PKG_OPTS:= dev
+
+DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,SKALIBS,skalibs,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
+
+CONFIGURE_ARGS+= --enable-force-devr \
+ --disable-allstatic \
+ --with-default-path=/sbin:/usr/sbin:/bin:/usr/bin
+
+skalibs-install:
+ $(INSTALL_DIR) $(IDIR_SKALIBS)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libskarnet.so* \
+ $(IDIR_SKALIBS)/usr/lib
+
+include $(ADK_TOPDIR)/mk/pkg-bottom.mk