blob: 87620139337397eb1f7018e61056ed9760ede158 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Maintainer: Haochen Tong <i at hexchain dot org>
pkgname=elvish
pkgver=0.14.0
pkgrel=2
pkgdesc="A friendly and expressive Unix shell."
arch=('i686' 'x86_64')
url="https://github.com/elves/elvish"
license=('custom:2-clause BSD')
provides=('elvish')
makedepends=('git' 'go')
depends=('glibc')
source=("git+https://github.com/elves/elvish.git#tag=v$pkgver")
md5sums=('SKIP')
install=elvish.install
prepare() {
mkdir -p "$srcdir/build"
export GOPATH="$srcdir/build"
export CGO_LDFLAGS="$LDFLAGS"
export GOFLAGS="-buildmode=pie -trimpath -mod=vendor -modcacherw"
cd "$srcdir/elvish"
go mod vendor
}
build() {
export GOPATH="$srcdir/build"
export CGO_LDFLAGS="$LDFLAGS"
export GOFLAGS="-buildmode=pie -trimpath -mod=vendor -modcacherw"
cd "$srcdir/elvish"
go build -v -ldflags="-X github.com/elves/elvish/pkg/buildinfo.Version=$pkgver" .
}
check() {
export GOPATH="$srcdir/build"
export CGO_LDFLAGS="$LDFLAGS"
export GOFLAGS="-trimpath -mod=vendor -modcacherw"
cd "$srcdir/elvish"
make test
}
package() {
install -Dm755 "$srcdir/elvish/elvish" -t "$pkgdir/usr/bin/"
install -Dm644 "$srcdir/$pkgname/LICENSE" -t "$pkgdir/usr/share/licenses/$pkgname/"
}
|