diff options
author | root <root@rshg054.dnsready.net> | 2013-07-15 01:26:20 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-15 01:26:20 -0700 |
commit | 49111a438f3120ab595d1b118f56571083b7da35 (patch) | |
tree | 99c8989f3f9423246b4564fa9b091ab5b0d0caa4 /community/bti/PKGBUILD | |
parent | d525d9a731f5d79c1128a192b9d2977a2967570f (diff) |
Mon Jul 15 01:25:50 PDT 2013
Diffstat (limited to 'community/bti/PKGBUILD')
-rw-r--r-- | community/bti/PKGBUILD | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/community/bti/PKGBUILD b/community/bti/PKGBUILD index d791d476c..63421bc19 100644 --- a/community/bti/PKGBUILD +++ b/community/bti/PKGBUILD @@ -1,35 +1,29 @@ -# $Id: PKGBUILD 67521 2012-03-13 02:14:29Z kchen $ +# $Id: PKGBUILD 94095 2013-07-14 11:36:26Z jlichtblau $ # Maintainer: Kaiting Chen <kaitocracy@gmail.com> # Contributor: uvok <uvok at online dot de> # Contributor: Urist <9362773 at gmail.com> pkgname=bti -pkgver=032 -pkgrel=3 +pkgver=033 +pkgrel=1 pkgdesc='Console client for Twitter and identi.ca' arch=('i686' 'x86_64') url='http://gregkh.github.com/bti/' license=('GPL') -depends=('pcre' 'libxml2' 'curl' 'liboauth') +depends=('pcre' 'libxml2' 'curl' 'liboauth' 'json-c') makedepends=('git') +source=(http://www.kernel.org/pub/software/web/$pkgname/$pkgname-$pkgver.tar.xz) +sha256sums=('a3d9d8a86a718a4820387c75ac2af24fecfe754ee562163d700acb7cf795d753') build() { - local _gitroot='git://github.com/gregkh/bti.git' - git clone ${_gitroot} - - cd bti - git checkout ${pkgver} - - ./autogen.sh - - ./configure \ - --prefix=/usr + cd ${srcdir}/$pkgname-$pkgver + ./configure --prefix=/usr make } package() { - cd bti + cd ${srcdir}/$pkgname-$pkgver make DESTDIR=${pkgdir} install } |