summaryrefslogtreecommitdiff
path: root/packages/zziplib/zziplib.inc
diff options
context:
space:
mode:
authorRobert Schuster <thebohemian@gmx.net>2008-02-19 23:53:49 +0000
committerRobert Schuster <thebohemian@gmx.net>2008-02-19 23:53:49 +0000
commit20d42693b736d4986cbf898c9ef1b392a65f3f85 (patch)
tree1f33afe48a7a157a812da3442054aefc29e93956 /packages/zziplib/zziplib.inc
parent5f52c593a937c3463f58ec1b5521431521da4ec6 (diff)
zziplib: Unification and new versions.
- added zziplib.inc file - added native and non-native recipe for latest stable (0.12) series - added native and non-native recipe for latest development (0.13) series
Diffstat (limited to 'packages/zziplib/zziplib.inc')
-rw-r--r--packages/zziplib/zziplib.inc20
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/zziplib/zziplib.inc b/packages/zziplib/zziplib.inc
new file mode 100644
index 0000000000..602eae6315
--- /dev/null
+++ b/packages/zziplib/zziplib.inc
@@ -0,0 +1,20 @@
+DESCRIPTION = "Support library for dealing with zip files"
+SECTION = "libs"
+PRIORITY = "optional"
+
+DEPENDS = "zlib python-native"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/zziplib/zziplib-${PV}.tar.bz2"
+LICENSE = "LGPL MPL"
+
+inherit autotools pkgconfig
+
+do_configure_append() {
+ # Fix some brokenness in the generated makefile.
+ sed -i \
+ -e "s|tail -1|tail -n 1|" \
+ -e "s|dist dist-all dist-all:|dist dist-all:|" \
+ Makefile
+
+ mkdir ${S}/build
+}