blob: d64ee9c8a84e97e36ed88185f9dcdccdb1baeaaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Nikolay Korotkiy <sikmir@gmail.com>
_orgname=fabioz
pkgname=mu-repo
pkgver=1.9.0
_tagname=${pkgname//-/_}_${pkgver//./_}
pkgrel=1
pkgdesc="Tool to help in dealing with multiple git repositories"
arch=(any)
url="http://fabioz.github.io/mu-repo/"
license=('GPL3')
depends=('python')
provides=("${pkgname}=${pkgver}")
conflicts=(${pkgname}-git)
source=("https://github.com/${_orgname}/${pkgname}/archive/${_tagname}.tar.gz")
sha256sums=('5de4aae542a83f408f518485d10819e99f62e658b107db6919ce73197c834296')
package() {
cd "${srcdir}/${pkgname}-${_tagname}"
python setup.py install --root="$pkgdir/" --prefix=/usr --optimize=1
}
|