PKGBUILDs/community/bzrtools/PKGBUILD

21 lines
576 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Jeff Mickey <jeff@archlinux.org>
# Contributor: Mark Rosenstand <mark@borkware.net>
pkgname=bzrtools
pkgver=2.0.1
pkgrel=1
pkgdesc="Useful collection of utilities (all plugins, right now) for bzr."
arch=('any')
url="http://bazaar-vcs.org/BzrTools"
license=('GPL')
depends=('bzr' 'python>=2.6')
source=(http://launchpadlibrarian.net/32493344/$pkgname-$pkgver.tar.gz)
md5sums=('a4a14e3ed4a6fa404123ee22662fa0a5')
build() {
cd "$srcdir/$pkgname"
python setup.py install --root=$pkgdir || return 1
}