mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 15:04:37 +08:00
24 lines
608 B
Bash
24 lines
608 B
Bash
# Maintainer: Radu Andries <admiral0@tuxfamily.org>
|
|
|
|
pkgname=python2-parched
|
|
pkgver=20091016
|
|
pkgrel=3
|
|
pkgdesc="A Pacman package and PKGBUILD parser module"
|
|
arch=('any')
|
|
url="http://github.com/sebnow/parched"
|
|
license=('MIT')
|
|
depends=('python2')
|
|
makedpends=('python2-distribute')
|
|
source=("parched-${pkgver}::https://github.com/sebnow/parched/archive/master.zip")
|
|
md5sums=('328aba1706733ae01f0e67e281430831')
|
|
|
|
|
|
build() {
|
|
cd $srcdir/parched-master
|
|
python setup.py build || return 1
|
|
}
|
|
package() {
|
|
cd $srcdir/parched-master
|
|
python setup.py install --root=$pkgdir --optimize=1 || return 1
|
|
}
|