summaryrefslogtreecommitdiff
path: root/community-testing/bti/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/bti/PKGBUILD')
-rw-r--r--community-testing/bti/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/community-testing/bti/PKGBUILD b/community-testing/bti/PKGBUILD
new file mode 100644
index 000000000..ca2987c1b
--- /dev/null
+++ b/community-testing/bti/PKGBUILD
@@ -0,0 +1,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
+}