# Maintainer: Sematre pkgname=piknik-git pkgver=0.9.1.r61.g00ee34c pkgrel=4 pkgdesc="Copy/paste anything over the network." arch=('any') url="https://github.com/jedisct1/${pkgname%-git}" license=('ISC') provides=("${pkgname%-git}") conflicts=("${pkgname%-git}") makedepends=('go' 'git') source=("git+${url}") md5sums=('SKIP') pkgver() { cd "${pkgname%-git}" git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' } build() { cd "${pkgname%-git}" 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 } package() { cd "${pkgname%-git}" install -Dm 755 "${pkgname%-git}" -t "$pkgdir/usr/bin" install -Dm 644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname%-git}/LICENSE" }