mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-10 10:24:39 +08:00
22 lines
712 B
Bash
22 lines
712 B
Bash
# Contributor: Martin Stolpe <martinstolpe [at] gmail ... com>
|
|
# Contributer: Joshua L. Blocher <verbalshadow@gmail.com>
|
|
|
|
pkgname=bzr-explorer
|
|
pkgver=1.2.3
|
|
pkgrel=1
|
|
pkgdesc="Bazaar Explorer is 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>=2.3' 'qbzr>=0.22')
|
|
categories=('programming')
|
|
source=("http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('61fb78332f4b7e2fd921b6e8c1f704be')
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
python setup.py install --prefix=/usr --root="${pkgdir}"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|