add: xyosc
This commit is contained in:
parent
5099193cab
commit
2f4a59b2e3
39
xyosc/PKGBUILD
Normal file
39
xyosc/PKGBUILD
Normal file
@ -0,0 +1,39 @@
|
||||
# Maintainer: Louis Dalibard <ontake@ontake.dev>
|
||||
# Contributor: Louis Dalibard <ontake@ontake.dev>
|
||||
_pkgbase="ontake-xyosc"
|
||||
pkgname="$_pkgbase-git"
|
||||
pkgver=r2.gadfc70d
|
||||
pkgrel=1
|
||||
pkgdesc="A simple XY-oscilloscope written in Go."
|
||||
arch=("x86_64" "armv7h" "aarch64")
|
||||
url="https://github.com/make-42/xyosc"
|
||||
license=('GPL3')
|
||||
groups=()
|
||||
depends=('mesa' 'libxi' 'libxcursor' 'libxrandr' 'libxinerama' 'wayland' 'libxkbcommon')
|
||||
makedepends=('go>=1.18' 'git')
|
||||
optdepends=()
|
||||
provides=("$_pkgbase")
|
||||
conflicts=("$_pkgbase")
|
||||
replaces=()
|
||||
backup=()
|
||||
options=()
|
||||
install=
|
||||
changelog=
|
||||
source=("git+https://github.com/make-42/xyosc")
|
||||
noextract=()
|
||||
md5sums=("SKIP") #autofill using updpkgsums
|
||||
|
||||
pkgver() {
|
||||
cd ${srcdir}/xyosc
|
||||
echo "r$(git rev-list --count HEAD).g$(git rev-parse --short HEAD)"
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/xyosc"
|
||||
go mod tidy
|
||||
go build -tags noaudio
|
||||
}
|
||||
|
||||
package() {
|
||||
install -Dm755 "${srcdir}/xyosc/xyosc" "${pkgdir}"/usr/bin/xyosc
|
||||
}
|
Loading…
Reference in New Issue
Block a user