void-packages/srcpkgs/kona/template

26 lines
669 B
Bash
Raw Normal View History

2015-02-16 15:23:29 +01:00
# Template file for 'kona'
pkgname=kona
2016-01-27 13:08:09 +01:00
version=3.39
2015-06-04 19:49:40 +02:00
revision=1
2015-02-16 15:23:29 +01:00
wrksrc="${pkgname}-Win.${version}-64"
short_desc="Open-source implementation of the K programming language"
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
license="MIT"
homepage="https://github.com/kevinlawler/kona"
distfiles="https://github.com/kevinlawler/${pkgname}/archive/Win.${version}-64.tar.gz"
2016-01-27 13:08:09 +01:00
checksum=fb5463d0a94f1a123c859c32caa1aa92f986b90451a0c78da4d80cba23e2ce0f
2015-02-16 15:23:29 +01:00
2015-05-13 17:50:07 +02:00
post_extract() {
2015-05-13 20:47:58 +02:00
sed -i '/netdb.h/a#include <sys/select.h>' src/incs.h
2015-05-13 17:50:07 +02:00
}
2015-02-16 15:23:29 +01:00
do_build() {
make ${makejobs} k \
CC="$CC" PRODFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS -lm -ldl"
}
do_install() {
vbin k
vlicense LICENSE
2015-08-31 13:40:27 +02:00
}