# Maintainer: Alexander F. Rødseth pkgname=teaftp pkgver=1.0.0 pkgrel=2 pkgdesc='Simple, read-only TFTP server' arch=('x86_64') url='https://github.com/xyproto/teaftp' license=('MIT') makedepends=('go' 'git') source=("git+https://github.com/xyproto/teaftp#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: