summaryrefslogtreecommitdiff
path: root/package/ucl
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-02-15 11:21:54 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2015-02-19 15:48:48 +0100
commitee5cb4ea2592e9defa081cf23b704160b364e9b4 (patch)
tree1e2fc059187b16eb5cc489986642ce80a4873ff7 /package/ucl
parentf0db4f5008c4bce495f1e314fe4c39576743612d (diff)
add ucl/upx packages
Diffstat (limited to 'package/ucl')
-rw-r--r--package/ucl/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/package/ucl/Makefile b/package/ucl/Makefile
new file mode 100644
index 000000000..d666e2e9c
--- /dev/null
+++ b/package/ucl/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 $(ADK_TOPDIR)/rules.mk
+
+PKG_NAME:= ucl
+PKG_VERSION:= 1.03
+PKG_RELEASE:= 1
+PKG_HASH:= b865299ffd45d73412293369c9754b07637680e5c826915f097577cd27350348
+PKG_DESCR:= lossless data compression library
+PKG_SECTION:= libs/comp
+PKG_URL:= http://www.oberhumer.com/opensource/ucl/
+PKG_SITES:= http://www.oberhumer.com/opensource/ucl/download/
+PKG_OPTS:= dev
+PKG_LIBNAME:= libucl
+
+DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBUCL,libucl,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
+
+libucl-install:
+ $(INSTALL_DIR) $(IDIR_LIBUCL)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libucl*.so* \
+ $(IDIR_LIBUCL)/usr/lib
+
+include $(ADK_TOPDIR)/mk/pkg-bottom.mk