mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-10 10:34:38 +08:00
29 lines
851 B
Bash
29 lines
851 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.22.4
|
|
pkgrel=2
|
|
pkgdesc="QBzr is a cross-platform GUI front end for Bazaar, based on the Qt toolkit."
|
|
arch=('i686' 'x86_64')
|
|
url="http://bazaar-vcs.org/QBzr"
|
|
license=('GPL')
|
|
depends=('python2-pyqt4>=4' 'bzr')
|
|
categories=('programming')
|
|
source=("http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('09157a217e4ae25fffd8a14e3e949db4')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
python2 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}"
|
|
python2 setup.py install --prefix="${pkgdir}/usr"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|