diff options
author | xengineering <me@xengineering.eu> | 2024-10-03 15:02:06 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-10-03 15:02:06 +0200 |
commit | 21791984961829138b581f6c6bef664e1875c461 (patch) | |
tree | e34c5f11a191b21dc612a72b11ec661a00ac4c92 | |
parent | 15ed599559b43ecd9942f3f4b97c072d5c97a025 (diff) | |
download | pkgbuilds-21791984961829138b581f6c6bef664e1875c461.tar pkgbuilds-21791984961829138b581f6c6bef664e1875c461.tar.zst pkgbuilds-21791984961829138b581f6c6bef664e1875c461.zip |
Add soundbox package
-rw-r--r-- | soundbox/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/soundbox/PKGBUILD b/soundbox/PKGBUILD new file mode 100644 index 0000000..07b283d --- /dev/null +++ b/soundbox/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: xengineering <me@xengineering.eu> +pkgname=soundbox +pkgver=0.1.0 +pkgrel=1 +pkgdesc="App to use soundbox devices" +arch=('x86_64' 'aarch64') +url="https://xengineering.eu/git/soundbox-app" +license=('AGPL') +makedepends=('coreutils' 'go') +depends=('mpv') +source=("git+https://cgit.xengineering.eu/${pkgname}-app#tag=$pkgver?signed") +sha256sums=('SKIP') + +validpgpkeys=( + 'A13B258878787F943F6C68F00FD1F84233FA8900' # xengineering <me@xengineering.eu> +) + +build() { + cd "${srcdir}/${pkgname}-app" + export CGO_CPPFLAGS="${CPPFLAGS}" + export CGO_CFLAGS="${CFLAGS}" + export CGO_CXXFLAGS="${CXXFLAGS}" + export CGO_LDFLAGS="${LDFLAGS}" + export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw" + go build -o "build/${pkgname}" *.go +} + +package() { + cd "${srcdir}" + install -D -m 755 "${pkgname}-app/build/${pkgname}" "${pkgdir}/usr/bin/${pkgname}" +} |