summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 34505cd30557fff8e4af7546ef430ae94be59d35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Alexander F Rødseth <xyproto@archlinux.org>

pkgname=ldfpcfix
pkgver=1.0
pkgrel=4
pkgdesc='Silence the "contains output sections" warning from /usr/bin/ld'
arch=(any)
url='https://github.com/xyproto/ldfpcfix'
license=('MIT')
makedepends=(go git)
source=("git+https://github.com/xyproto/ldfpcfix#tag=v$pkgver")
sha256sums=(SKIP)

build() {
  cd $pkgname
  go build
}

package() {
  install -Dm755 $pkgname/$pkgname "$pkgdir/usr/bin/$pkgname"
}

# vim: ts=2 sw=2 et: