summaryrefslogtreecommitdiff
path: root/package/tinycdb/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-12-04 12:02:38 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2011-12-04 12:02:38 +0100
commitc46017c02278b9d195ac35616d40a009cd625d2a (patch)
tree476a97bebca1915489d818fee2e62f79dc53e10a /package/tinycdb/Makefile
parent37686107693fc49f21f6a7f28cdbe1a2df222eda (diff)
fix postfix segfaults by avoidance of berkeley db
Diffstat (limited to 'package/tinycdb/Makefile')
-rw-r--r--package/tinycdb/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/package/tinycdb/Makefile b/package/tinycdb/Makefile
new file mode 100644
index 000000000..79fa6d43e
--- /dev/null
+++ b/package/tinycdb/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:= tinycdb
+PKG_VERSION:= 0.77
+PKG_RELEASE:= 1
+PKG_MD5SUM:= c00e5fb96c30356ac3b67b2ab5d5641b
+PKG_DESCR:= CDB implementation
+PKG_SECTION:= db
+PKG_URL:= http://www.corpit.ru/mjt/tinycdb/
+PKG_SITES:= http://www.corpit.ru/mjt/tinycdb/
+
+DISTFILES:= ${PKG_NAME}_${PKG_VERSION}.tar.gz
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,TINYCDB,tinycdb,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIG_STYLE:= manual
+
+tinycdb-install:
+ $(INSTALL_DIR) $(IDIR_TINYCDB)/usr/lib
+ $(INSTALL_BIN) $(WRKINST)/usr/lib/libcdb.a \
+ $(IDIR_TINYCDB)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk