blob: f4be2807f7fa18704f88210a68b0f20468702d37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
NAME="elvish"
DESC="A friendly and expressive shell for Linux, macOS and BSDs"
MAKEDEPS=" go"
PKG_VER=0.15.0
SOURCE="https://github.com/elves/elvish/archive/v$PKG_VER.tar.gz"
build() {
mkdir gopath
export GOPATH="$BUILD_ROOT/gopath"
go build -o bin/elvish
}
package() {
install -Dm755 bin/elvish "$PKG_DEST"/usr/bin
}
|