mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
24 lines
691 B
Bash
24 lines
691 B
Bash
#Contributer List: http://paste.chakra-project.org/5951/
|
|
pkgname=qbzr
|
|
_pkgver=0.23
|
|
pkgver=${_pkgver}.1
|
|
pkgrel=1
|
|
pkgdesc="A GUI front end for Bazaar based on the Qt toolkit."
|
|
arch=('x86_64')
|
|
url="http://wiki.bazaar-vcs.org/QBzr"
|
|
license=('GPL')
|
|
depends=('python2-pyqt4' 'bzr')
|
|
categories=('programming')
|
|
source=("http://launchpad.net/${pkgname}/${_pkgver}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('594796b2cf9887d895545d7ed84e3879')
|
|
screenshot='http://doc.bazaar.canonical.com/explorer/en/_images/dialog-annotate2.png'
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname
|
|
./setup.py build
|
|
}
|
|
package() {
|
|
cd ${srcdir}/$pkgname
|
|
./setup.py install --prefix=${pkgdir}/usr install
|
|
}
|