27 lines
903 B
Text
27 lines
903 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Oliver Smith <ollieparanoid@postmarketos.org>
|
|
pkgname=pmbootstrap
|
|
pkgver=1.11.0
|
|
pkgrel=0
|
|
pkgdesc="Sophisticated chroot/build/flash tool to develop and install postmarketOS"
|
|
url="https://gitlab.com/postmarketOS/pmbootstrap"
|
|
arch="noarch"
|
|
license="GPL-3.0-or-later"
|
|
depends="python3 coreutils procps"
|
|
makedepends="python3"
|
|
checkdepends="pytest"
|
|
source="$pkgname-$pkgver.tar.gz::https://gitlab.com/postmarketos/pmbootstrap/-/archive/$pkgver/pmbootstrap-$pkgver.tar.gz"
|
|
options="!check" # Doesn't like making chroot directories
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
sha512sums="9d914fc7b2968504790434d49f4426e8f408a3f68c31b561a2a930233e8dd66c9a439cfee07b8c92c00a06cfceb95f80157dc6c3e2efeef2692a9b0bd5342976 pmbootstrap-1.11.0.tar.gz"
|