24 lines
652 B
Plaintext
24 lines
652 B
Plaintext
|
# Template file for 'bzrtools'
|
||
|
pkgname=bzrtools
|
||
|
version=2.0.1
|
||
|
wrksrc=$pkgname
|
||
|
distfiles="http://launchpad.net/$pkgname/stable/$version/+download/$pkgname-$version.tar.gz"
|
||
|
build_style=custom-install
|
||
|
short_desc="Plugin providing a collection of utilities for bzr"
|
||
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||
|
checksum=0dffad46808490b0825c201719f61c77d91a360853abaf229c4ca5c05ab24d54
|
||
|
long_desc="
|
||
|
This is a plugin providing a collection of utilities for bzr."
|
||
|
|
||
|
noarch=yes
|
||
|
|
||
|
Add_dependency full python
|
||
|
Add_dependency full bzr
|
||
|
|
||
|
do_install()
|
||
|
{
|
||
|
cd ${wrksrc}
|
||
|
sed -i 's|man/man1|share/man/man1|g' setup.py
|
||
|
python setup.py install --prefix=usr --root=${DESTDIR}
|
||
|
}
|