# Maintainer: orhun # https://github.com/orhun/pkgbuilds pkgname=pkgtop-git pkgdesc="Interactive package manager & resource monitor (git)" pkgver=2.4.r0.g639b2fe pkgrel=2 arch=('x86_64') url="https://github.com/orhun/pkgtop" license=('GPL3') makedepends=('git' 'go') conflicts=("${pkgname%-git}") provides=("${pkgname%-git}") source=("git+$url") sha256sums=('SKIP') pkgver() { cd "${pkgname%-git}" git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' } build() { cd "${pkgname%-git}/src" go get -d ./... go build \ -gcflags "all=-trimpath=$PWD" \ -asmflags "all=-trimpath=$PWD" \ -ldflags "-extldflags $LDFLAGS" \ -o "${pkgname%-git}" . } package() { cd "${pkgname%-git}/src" install -Dm 755 "${pkgname%-git}" -t "$pkgdir/usr/bin" install -Dm 644 "../README.md" -t "$pkgdir/usr/share/doc/$pkgname" }