mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
22 lines
720 B
Bash
22 lines
720 B
Bash
|
#Contributed by Christian Rapp <saedelaere.tv@gmail.com>, based on:
|
||
|
#Contributed by Peter Dennis <listen.ppublic@gmail.com>, based on PKGBUILD by:
|
||
|
#Contributor: Ariel Kanterewicz <asdkant@gmail.com>
|
||
|
# Contributer: Joshua L. Blocher <verbalshadow@gmail.com>
|
||
|
|
||
|
pkgname=qbzr
|
||
|
pkgver=0.19
|
||
|
pkgrel=1
|
||
|
pkgdesc="A GUI front end for Bazaar based on the Qt toolkit."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://wiki.bazaar-vcs.org/QBzr"
|
||
|
license=('GPL')
|
||
|
depends=('pyqt>=4' 'bzr')
|
||
|
source=(http://launchpad.net/${pkgname}/0.19/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz)
|
||
|
md5sums=('7549324934fdda9b7066045a6bbd065a')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname
|
||
|
./setup.py build || return 1
|
||
|
./setup.py install --prefix=$startdir/pkg/usr install
|
||
|
}
|