summaryrefslogtreecommitdiff
path: root/community/lua-zlib
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/lua-zlib
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/lua-zlib')
-rw-r--r--community/lua-zlib/ChangeLog42
-rw-r--r--community/lua-zlib/PKGBUILD32
2 files changed, 74 insertions, 0 deletions
diff --git a/community/lua-zlib/ChangeLog b/community/lua-zlib/ChangeLog
new file mode 100644
index 000000000..881a6885b
--- /dev/null
+++ b/community/lua-zlib/ChangeLog
@@ -0,0 +1,42 @@
+2010-02-18 Dwayne Bent <dbb.0@liqd.org>
+
+ * PKGBUILD:
+ Actually build the library
+ [b994a1eae8e4] [tip]
+
+2010-02-15 Dwayne Bent <dbb.1@liqd.org>
+
+ * .hgtags:
+ Added tag v20100215-1 for changeset 82cf8c12f58d
+ [5e6e628919ec]
+
+ * ChangeLog, PKGBUILD:
+ Added ChangeLog
+ [82cf8c12f58d] [v20100215-1]
+
+ * PKGBUILD:
+ Install license file
+ [470c65e1d08b]
+
+ * PKGBUILD:
+ Updated email address
+ [cf9fdc7b9cc5]
+
+ * PKGBUILD:
+ Change package name to reflect the type of package this actually is
+ [39b61ef661d7]
+
+ * PKGBUILD:
+ Clean up PKGBUILD
+ [183b11d1286e]
+
+2009-11-26 Dwayne Bent <dbb.0@liqd.org>
+
+ * .hgtags:
+ Added tag v20091125-1 for changeset 8e6cc75fb38b
+ [72c8c117a64c]
+
+ * Makefile, PKGBUILD:
+ Initial commit
+ [8e6cc75fb38b] [v20091125-1]
+
diff --git a/community/lua-zlib/PKGBUILD b/community/lua-zlib/PKGBUILD
new file mode 100644
index 000000000..01ebf0eee
--- /dev/null
+++ b/community/lua-zlib/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 23493 2010-08-11 18:21:33Z lcarlier $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=lua-zlib
+pkgver=0
+pkgrel=3
+url="http://github.com/brimworks/lua-zlib"
+pkgdesc='Simple streaming interface to zlib for Lua.'
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('lua' 'zlib')
+makedepends=('cmake')
+conflicts=('lua-lzlib')
+source=("lua-zlib-$pkgver.tar.gz::http://github.com/brimworks/lua-zlib/tarball/version-0")
+md5sums=('c404284a796e2f9143629bfdcb1ba200')
+
+build() {
+ cd $srcdir/brimworks-lua-zlib-da0549e
+
+ local _luaver=5.1
+ sed -i "s#share/lua/cmod#lib/lua/${_luaver}#" CMakeLists.txt
+
+ cmake -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr .
+}
+
+package() {
+ cd $srcdir/brimworks-lua-zlib-da0549e
+
+ make DESTDIR="$pkgdir" install || return 1
+ install -D -m644 "README" "$pkgdir/usr/share/licenses/lua-zlib/README"
+}