Some checks failed
Release / test (push) Successful in -30m28s
Release / release (push) Successful in -29m36s
Release / pkg-aur (push) Failing after -31m0s
Release / pkg-arch (push) Failing after -30m36s
Release / pkg-deb (push) Successful in -30m6s
Release / pkg-rpm (push) Failing after -30m27s
* Change source archive from tar.gz to zip for Arch packaging * Update URLs in PKGBUILD and spec files to point to the correct repository
45 lines
1.0 KiB
Bash
45 lines
1.0 KiB
Bash
# Maintainer: Hein (Warky Devs) <hein@warky.dev>
|
|
pkgname=unitdore
|
|
pkgver=0.1.0
|
|
pkgrel=1
|
|
pkgdesc="A door you open and close for container units — manage containers via systemd"
|
|
arch=('x86_64' 'aarch64')
|
|
url="https://git.warky.dev/wdevs/unitdore"
|
|
license=('MIT')
|
|
depends=('systemd')
|
|
optdepends=(
|
|
'podman: Podman container runtime support'
|
|
'docker: Docker container runtime support'
|
|
)
|
|
makedepends=('go')
|
|
backup=('etc/unitdore/units.yaml')
|
|
source=("$pkgname-$pkgver.zip::$url/archive/v$pkgver.zip")
|
|
sha256sums=('SKIP')
|
|
|
|
build() {
|
|
cd "$pkgname-v$pkgver"
|
|
export CGO_ENABLED=0
|
|
go build \
|
|
-trimpath \
|
|
-ldflags "-X main.version=$pkgver" \
|
|
-o "$pkgname" .
|
|
}
|
|
|
|
check() {
|
|
cd "$pkgname-v$pkgver"
|
|
go test ./...
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-v$pkgver"
|
|
|
|
# Binary
|
|
install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
|
|
|
|
# Man page
|
|
install -Dm644 docs/unitdore.1 "$pkgdir/usr/share/man/man1/unitdore.1"
|
|
|
|
# Default config dir
|
|
install -dm755 "$pkgdir/etc/unitdore"
|
|
}
|