mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
26 lines
634 B
Bash
26 lines
634 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.8.2
|
|
pkgrel=1
|
|
pkgdesc="Libalpm bindings for Python 3"
|
|
arch=('x86_64')
|
|
url="https://git.archlinux.org/pyalpm.git/"
|
|
license=('GPL')
|
|
depends=('python3>=3.6' 'pacman>=5.0')
|
|
source=("https://git.archlinux.org/pyalpm.git/snapshot/$pkgname-$pkgver.tar.gz" )
|
|
sha1sums=('6cbfc13d155a655732aa6ebbef7ba407ef7a0889')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
python3 setup.py install --root=$pkgdir
|
|
}
|