30 lines
729 B
Bash
30 lines
729 B
Bash
|
# Template file for 'joker'
|
||
|
pkgname=joker
|
||
|
version=0.12.1
|
||
|
revision=1
|
||
|
build_style=go
|
||
|
go_import_path="github.com/candid82/joker"
|
||
|
hostmakedepends="git"
|
||
|
short_desc="Interpreted dialect of Clojure written in Go and Clojure(Script) linter"
|
||
|
maintainer="Dominic Monroe <monroef4@googlemail.com>"
|
||
|
license="EPL-1.0"
|
||
|
homepage="https://joker-lang.org/"
|
||
|
distfiles="https://github.com/candid82/joker/archive/v${version}.tar.gz"
|
||
|
checksum=b019b96f9a36cb88749701c8e93a3d811ee26f6c453595320a3ab3adca404c09
|
||
|
|
||
|
if [ "$CROSS_BUILD" ]; then
|
||
|
hostmakedepends+=" joker"
|
||
|
fi
|
||
|
|
||
|
pre_build() {
|
||
|
JOKER="joker"
|
||
|
|
||
|
if [ -z "$CROSS_BUILD" ]; then
|
||
|
JOKER="../joker"
|
||
|
go generate ./...
|
||
|
go build
|
||
|
fi
|
||
|
|
||
|
(cd std; "$JOKER" --hashmap-threshold 8192 generate-std.joke)
|
||
|
}
|