2020-09-12 10:30:41 +00:00
|
|
|
# Maintainer: Oliver Smith <ollieparanoid@postmarketos.org>
|
2021-08-17 07:03:01 +00:00
|
|
|
# Co-Maintainer: Clayton Craft <clayton@craftyguy.net>
|
2017-05-26 20:26:25 +00:00
|
|
|
pkgname=postmarketos-mkinitfs
|
2023-06-18 17:24:46 +00:00
|
|
|
pkgver=2.2
|
2023-07-19 21:18:05 +00:00
|
|
|
pkgrel=1
|
2017-06-07 21:14:24 +00:00
|
|
|
pkgdesc="Tool to generate initramfs images for postmarketOS"
|
2018-06-30 07:00:48 +00:00
|
|
|
url="https://postmarketos.org"
|
2020-09-12 10:30:41 +00:00
|
|
|
depends="
|
2023-01-27 07:01:13 +00:00
|
|
|
boot-deploy>=0.7
|
2023-02-17 22:36:09 +00:00
|
|
|
"
|
2023-03-13 20:04:02 +00:00
|
|
|
makedepends="go scdoc"
|
2020-06-11 13:40:08 +00:00
|
|
|
replaces="mkinitfs"
|
2023-02-17 22:36:09 +00:00
|
|
|
triggers="$pkgname.trigger=/usr/share/mkinitfs/*:/usr/share/kernel/*:/usr/share/mkinitfs-triggers"
|
|
|
|
# mkinitfs-vendor-$pkgver.tar.gz: vendored Go deps, is part of the release:
|
|
|
|
# https://gitlab.com/postmarketOS/postmarketos-mkinitfs/-/releases
|
2021-08-17 07:03:01 +00:00
|
|
|
source="
|
|
|
|
https://gitlab.com/postmarketOS/postmarketos-mkinitfs/-/archive/$pkgver/postmarketos-mkinitfs-$pkgver.tar.gz
|
2023-02-17 22:36:09 +00:00
|
|
|
https://gitlab.com/api/v4/projects/postmarketOS%2Fpostmarketos-mkinitfs/packages/generic/mkinitfs-vendor-$pkgver/$pkgver/mkinitfs-vendor-$pkgver.tar.gz
|
2020-04-11 09:47:41 +00:00
|
|
|
"
|
2023-02-17 22:36:09 +00:00
|
|
|
|
2021-08-17 07:03:01 +00:00
|
|
|
install="$pkgname.post-upgrade"
|
|
|
|
arch="all"
|
2020-09-12 10:30:41 +00:00
|
|
|
license="GPL-2.0-or-later"
|
2022-06-10 22:40:17 +00:00
|
|
|
provider_priority=999 # higher priority than Alpine's mkinitfs
|
2022-06-12 16:34:56 +00:00
|
|
|
provides="initramfs-generator"
|
2023-02-17 22:36:09 +00:00
|
|
|
subpackages="$pkgname-doc"
|
2017-05-26 20:26:25 +00:00
|
|
|
|
2021-08-17 07:03:01 +00:00
|
|
|
export CGO_ENABLED=0
|
2023-02-17 22:36:09 +00:00
|
|
|
export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"
|
|
|
|
export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}"
|
|
|
|
export GOPATH="$srcdir"
|
|
|
|
export GOTMPDIR="${GOTMPDIR:-"$srcdir"}"
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
default_prepare
|
|
|
|
ln -s "$srcdir"/vendor "$builddir"/vendor
|
|
|
|
}
|
2021-08-17 07:03:01 +00:00
|
|
|
|
|
|
|
build() {
|
2022-09-16 16:48:17 +00:00
|
|
|
unset LDFLAGS # passed to Go as linker flags, which are invalid
|
2023-03-13 20:04:02 +00:00
|
|
|
make VERSION="$pkgver"
|
2021-08-17 07:03:01 +00:00
|
|
|
}
|
|
|
|
|
2017-05-26 20:26:25 +00:00
|
|
|
package() {
|
2022-09-16 16:48:17 +00:00
|
|
|
make PREFIX=/usr DESTDIR="$pkgdir" install
|
2017-05-26 20:26:25 +00:00
|
|
|
}
|
2020-02-05 19:32:16 +00:00
|
|
|
|
2020-04-04 12:18:13 +00:00
|
|
|
check() {
|
2021-08-17 07:03:01 +00:00
|
|
|
go test ./...
|
2020-04-04 12:18:13 +00:00
|
|
|
}
|
2021-08-17 07:03:01 +00:00
|
|
|
|
2021-05-21 15:29:31 +00:00
|
|
|
sha512sums="
|
2023-06-18 17:24:46 +00:00
|
|
|
7efa31463e85dbcf53baac75b081060df91fee09f1ed33d5b45909d2e2571f8869be16552c486cf9f9e9945598c04ba96656dfa7a17a83a3654985901ef16b57 postmarketos-mkinitfs-2.2.tar.gz
|
|
|
|
b817718da500bee51d2de610cadfcbda88bd110ebc3ecf5c798fb3d0175e9977fb638c8bfb2054bc4573d00ff03b6ffc85654f7d6964b37577bc9de1be01a08c mkinitfs-vendor-2.2.tar.gz
|
2021-05-21 15:29:31 +00:00
|
|
|
"
|