summaryrefslogtreecommitdiff
path: root/community/libzen/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/libzen/PKGBUILD')
-rw-r--r--community/libzen/PKGBUILD16
1 files changed, 8 insertions, 8 deletions
diff --git a/community/libzen/PKGBUILD b/community/libzen/PKGBUILD
index dcbb073b8..26c4a07da 100644
--- a/community/libzen/PKGBUILD
+++ b/community/libzen/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 45012 2011-04-14 09:10:57Z spupykin $
+# $Id: PKGBUILD 50993 2011-07-04 11:24:03Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: hydro <hydro@freenet.de>
pkgname=libzen
-pkgver=0.4.19
+pkgver=0.4.20
pkgrel=1
pkgdesc="shared library for libmediainfo and mediainfo"
arch=('i686' 'x86_64')
@@ -13,28 +13,28 @@ depends=('gcc-libs')
makedepends=('libtool' 'automake' 'autoconf')
options=('!libtool')
source=(http://downloads.sourceforge.net/zenlib/${pkgname}_${pkgver}.tar.bz2)
-md5sums=('0deabb701564f2e616a7ee6dd71599a1')
+md5sums=('8211cc2ca8500c6af14600363be064d5')
build() {
cd $srcdir/ZenLib/Project/GNU/Library
-
sh ./autogen
./configure --prefix=/usr --enable-shared
make clean
+ sed -i '1,1i#include <stdlib.h>' ../../../Source/ZenLib/Thread.h
make
- make DESTDIR=$pkgdir install
+}
+package() {
+ cd $srcdir/ZenLib/Project/GNU/Library
+ make DESTDIR=$pkgdir install
install -dm 755 $pkgdir/usr/include/ZenLib
install -m 644 $srcdir/ZenLib/Source/ZenLib/*.h $pkgdir/usr/include/ZenLib
-
for i in Base64 HTTP_Client Format/Html Format/Http TinyXml; do
install -dm 755 $pkgdir/usr/include/ZenLib/$i
install -m 644 $srcdir/ZenLib/Source/ZenLib/$i/*.h $pkgdir/usr/include/ZenLib/$i
done
-
install -dm 755 $pkgdir/usr/lib/pkgconfig
install -m 644 $srcdir/ZenLib/Project/GNU/Library/libzen.pc $pkgdir/usr/lib/pkgconfig
sed -i -e 's|Version: |Version: '$pkgver'|g' $pkgdir/usr/lib/pkgconfig/libzen.pc
-
install -D -m 644 $srcdir/ZenLib/License.txt $pkgdir/usr/share/licenses/libzen/License.txt
}