You've already forked PKGBUILDs
fix: renamed arm directories
This commit is contained in:
3
armv7/flucky/.gitignore
vendored
Normal file
3
armv7/flucky/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
*
|
||||
!.gitignore
|
||||
!PKGBUILD
|
24
armv7/flucky/PKGBUILD
Normal file
24
armv7/flucky/PKGBUILD
Normal file
@ -0,0 +1,24 @@
|
||||
# Maintainer: Markus Pesch <markus.pesch@cryptic.systems>
|
||||
|
||||
pkgname=flucky
|
||||
pkgver=v0.1.0
|
||||
pkgrel=3
|
||||
pkgdesc='A lightweight golang program to read values from different sensors'
|
||||
arch=('armv7' 'armv7h' 'armv7l')
|
||||
url=https://github.com/volker-raschek/flucky
|
||||
license=('Apache 2.0')
|
||||
makedepends=('git' 'go' 'make')
|
||||
source=("git+https://github.com/volker-raschek/flucky#tag=${pkgver}")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
build() {
|
||||
GOBIN=${HOME}/go/bin
|
||||
PATH=$GOBIN:$PATH
|
||||
go get -u github.com/go-bindata/go-bindata/...
|
||||
make -C "${srcdir}/${pkgname}" bin/linux/arm/7/${pkgname} VERSION=${pkgver}
|
||||
}
|
||||
|
||||
package() {
|
||||
install -Dm4755 "${srcdir}/${pkgname}/bin/linux/arm/7/${pkgname}" "$pkgdir/usr/bin/flucky"
|
||||
install -Dm644 "${srcdir}/${pkgname}/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
}
|
5
armv7/mirror.conf
Normal file
5
armv7/mirror.conf
Normal file
@ -0,0 +1,5 @@
|
||||
# A repo for Markus Pesch's own projects:
|
||||
# - https://github.com/volker-raschek
|
||||
# - https://git.cryptic.systems/volker.raschek
|
||||
[cs_armv7]
|
||||
Server = https://arch.cryptic.systems/$arch/
|
Reference in New Issue
Block a user