blob: ca2987c1b00111511932aaccc8ab7ba53fec7b15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Maintainer: Kaiting Chen <kaitocracy@gmail.com>
# Contributor: uvok <uvok at online dot de>
# Contributor: Urist <9362773 at gmail.com>
pkgname=bti
pkgver=032
pkgrel=2
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')
makedepends=('git')
build() {
local _gitroot='git://github.com/gregkh/bti.git'
git clone ${_gitroot}
cd bti
git checkout ${pkgver}
./autogen.sh
./configure \
--prefix=/usr
make
}
package() {
cd bti
make DESTDIR=${pkgdir} install
}
|