summaryrefslogtreecommitdiff
path: root/community/bti/PKGBUILD
blob: ec01829747d08ffab89adfb2956eb677c3c77e58 (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
35
# $Id: PKGBUILD 67521 2012-03-13 02:14:29Z kchen $
# 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
pkgdesc='Console client for Twitter and identi.ca'
arch=('i686' 'x86_64' 'mips64el')
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
}