mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-15 23:40:26 +08:00
25 lines
665 B
Bash
25 lines
665 B
Bash
# Apps Packages for Chakra, part of www.chakra-project.org
|
|
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
|
|
# Contributor: Rémy Oudompheng <remy@archlinux.org>
|
|
|
|
pkgname=pyalpm
|
|
pkgver=0.6.2
|
|
pkgrel=1
|
|
pkgdesc="Libalpm bindings for Python 3"
|
|
arch=('x86_64')
|
|
url="http://projects.archlinux.org/users/remy/pyalpm.git/"
|
|
license=('GPL')
|
|
depends=('python3>=3.2' 'pacman>=4')
|
|
source=("ftp://ftp.archlinux.org/other/pyalpm/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('8b573d77ddc189d97e7dde52d97b4f89')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
python3 setup.py install --root=${pkgdir}
|
|
}
|