Failed attempt at writing PKGBUILD [CI SKIP]

This commit is contained in:
Jef Roosens 2022-02-22 20:46:28 +01:00
parent 13e04cd615
commit d5c1366d65
Signed by untrusted user: Jef Roosens
GPG key ID: B580B976584B5F30
3 changed files with 50 additions and 5 deletions

40
PKGBUILD Normal file
View file

@ -0,0 +1,40 @@
# Maintainer: Jef Roosens
pkgbase='vieter'
pkgname=('vieter' 'vieterctl')
pkgver=0.1.0.rc1.r45.g6d3ff8a
pkgrel=1
depends=('openssl' 'libarchive' 'gc')
arch=('x86_64' 'aarch64' 'armv7')
url='https://git.rustybever.be/Chewing_Bever/vieter'
license=('AGPL3')
source=($pkgname::git+https://git.rustybever.be/Chewing_Bever/vieter#branch=dev)
md5sums=('SKIP')
pkgver() {
cd "$pkgname"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$pkgname"
# Build the compiler
make v
# Build the server & the CLI tool
make prod
make cli-prod
}
package_vieter() {
install -dm755 "$pkgdir/usr/bin"
install -Dm755 "$pkgname/pvieter" "$pkgdir/usr/bin/vieter"
}
package_vieterctl() {
install -dm755 "$pkgdir/usr/bin"
install -Dm755 "$pkgname/vieterctl" "$pkgdir/usr/bin/vieterctl"
}