diff options
author | root <root@rshg054.dnsready.net> | 2012-03-14 00:01:30 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-03-14 00:01:30 +0000 |
commit | 01a0c4bc740842efa3bf1a7e1d6c8be5656e4e2a (patch) | |
tree | c9cf79fb6311cbb2a890419e0a382aa211fb3010 /community/libtlen/PKGBUILD | |
parent | ca06c41d7d8e5d38284de9048372ab45dcd8b2fb (diff) |
Wed Mar 14 00:01:29 UTC 2012
Diffstat (limited to 'community/libtlen/PKGBUILD')
-rw-r--r-- | community/libtlen/PKGBUILD | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/community/libtlen/PKGBUILD b/community/libtlen/PKGBUILD index e4c4bbf72..a0f312c33 100644 --- a/community/libtlen/PKGBUILD +++ b/community/libtlen/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 22906 2010-08-01 03:53:55Z mherych $ +# $Id: PKGBUILD 67517 2012-03-12 22:14:18Z lcarlier $ # Contributor: Jaroslaw Swierczynski <swiergot@juvepoland.com> pkgname=libtlen pkgver=20041113 -pkgrel=4 +pkgrel=5 pkgdesc="A Tlen.pl protocol library" arch=('i686' 'x86_64') url="http://libtlen.sourceforge.net/" @@ -13,8 +13,14 @@ source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.t md5sums=('b77c0a3234a21d1b79df8a8b9a9b9534') build() { - cd $startdir/src/$pkgname-$pkgver + cd ${srcdir}/$pkgname-$pkgver + ./configure --prefix=/usr - make || return 1 - make DESTDIR=$startdir/pkg install + make +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + + make DESTDIR=${pkgdir} install } |