22 lines
587 B
Plaintext
22 lines
587 B
Plaintext
|
# Description: bti (twitter/identi.ca console client)
|
||
|
# URL: http://gregkh.github.com/bti/
|
||
|
# Packager: alienus at nutyx dot org, tnut at nutyx dot org
|
||
|
# Depends on: cyrus-sasl json-c libidn liboauth libxml2 openldap pcre
|
||
|
name=bti
|
||
|
version=034
|
||
|
release=1
|
||
|
|
||
|
source=(https://www.kernel.org/pub/software/web/bti/bti-$version.tar.xz)
|
||
|
|
||
|
build(){
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
|
||
|
install -Dm644 bti-bashcompletion \
|
||
|
$PKG/etc/bash_completion.d/bti
|
||
|
install -Dm644 README \
|
||
|
$PKG/usr/share/doc/$name-$version/README
|
||
|
}
|