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

pkgname=teaftp
pkgver=1.1.1
pkgrel=1
pkgdesc='Simple, read-only TFTP server'
arch=(x86_64)
url='https://github.com/xyproto/teaftp'
license=(MIT)
makedepends=(git go)
source=("git+$url#tag=v$pkgver")
md5sums=('SKIP')

build() {
  cd "$pkgname"

  export GO111MODULE=off
  go get -d
  go build -buildmode=pie
}

package() {
  cd "$pkgname"

  install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

# vim: ts=2 sw=2 et: