mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
20 lines
626 B
Bash
20 lines
626 B
Bash
# Contributor: Martin Stolpe <martinstolpe [at] gmail ... com>
|
|
# Contributer: Joshua L. Blocher <verbalshadow@gmail.com>
|
|
|
|
pkgname=bzr-explorer
|
|
pkgver=1.1.2
|
|
pkgrel=1
|
|
pkgdesc="A desktop application for using the Bazaar Version Control System"
|
|
arch=('i686' 'x86_64')
|
|
url="http://doc.bazaar-vcs.org/explorer/en/index.html"
|
|
license=('GPL')
|
|
depends=("python2" "bzr" "qbzr")
|
|
source=(http://launchpad.net/bzr-explorer/1.1/1.1.2/+download/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('d23eb88d1a72b705fdafc4e462447092')
|
|
|
|
build() {
|
|
cd "${startdir}/src/explorer/"
|
|
python setup.py install --prefix'=/usr' --root="${startdir}/pkg" || return 1
|
|
}
|
|
|