summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4c5edfff7b8681c69087302285f9ac61bed84272 (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
46
# Maintainer: Haochen Tong <i at hexchain dot org>
# Maintainer: Qi Xiao <xiaqqaix at gmail dot com>

pkgname=elvish
pkgver=0.15.0
pkgrel=2
pkgdesc="A friendly and expressive Unix shell"
arch=('i686' 'x86_64')
url="https://github.com/elves/elvish"
license=('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 GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
    cd "$srcdir/elvish"
    go mod vendor
}

build() {
    cd "$srcdir/elvish"
    export GOPATH="$srcdir/build"
    export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
    export CGO_ENABLED=0
    go build -v -ldflags="-X github.com/elves/elvish/pkg/buildinfo.Version=$pkgver" .
}

check() {
    export GOPATH="$srcdir/build"
    export GOFLAGS="-trimpath -mod=readonly -modcacherw"
    export CGO_ENABLED=1
    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/"
}