pmaports/main/pmbootstrap/APKBUILD

31 lines
931 B
Text
Raw Normal View History

2018-09-22 09:36:36 +00:00
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=pmbootstrap
2019-07-05 19:16:28 +00:00
pkgver=1.7.0
2019-03-03 09:45:39 +00:00
pkgrel=0
2018-09-22 09:36:36 +00:00
pkgdesc="Sophisticated chroot/build/flash tool to develop and install postmarketOS"
url="https://gitlab.com/postmarketOS/pmbootstrap"
arch="noarch"
license="GPL-3.0"
2019-02-28 08:40:39 +00:00
depends="python3 coreutils procps"
2018-09-22 09:36:36 +00:00
makedepends="python3-dev"
checkdepends="pytest"
source="$pkgname-$pkgver.tar.gz::https://gitlab.com/postmarketos/pmbootstrap/-/archive/$pkgver/$pkgname-$pkgver.tar.gz"
options="!check" # Doesn't like making chroot directories
build() {
cd "$builddir"
python3 setup.py build
}
check() {
cd "$builddir"
python3 setup.py test
}
package() {
cd "$builddir"
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
2019-07-05 19:16:28 +00:00
sha512sums="13a6085d113ab76d7b54ff438c3ea8fec1a8a4f8cf7e5efed372a6ce8288ef5cf96b8e7aae35ec7adba6a03f2da50fa93671260bf1b96593e0519ffe3c3baa28 pmbootstrap-1.7.0.tar.gz"