a21d7897e3
Fixes 'pmbootstrap flasher boot' for fastboot devices. This is probably not used as often as 'pmbootstrap flasher flash_*', so I'm not enforcing the upgrade by modifying pmaports.cfg this time.
27 lines
901 B
Text
27 lines
901 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Oliver Smith <ollieparanoid@postmarketos.org>
|
|
pkgname=pmbootstrap
|
|
pkgver=1.8.3
|
|
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="bb17515f399bf901f6f41e48a033fdf433ce892582fd6ad00aadd576e5b1f23f53786062cb14dbcb791330674d208b086be0c6f187d54c681f2fb57122838b58 pmbootstrap-1.8.3.tar.gz"
|