void-packages/srcpkgs/kona/template
Christian Neukirchen ec78160370 kona: update to 3.30.
2015-06-18 13:11:36 +02:00

26 lines
670 B
Bash

# Template file for 'kona'
pkgname=kona
version=3.30
revision=1
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"
checksum=fdd83fbac1e28ea00f0374a9d3087f9a7fc47b6b076100a31d884cad69f5f230
post_extract() {
sed -i '/netdb.h/a#include <sys/select.h>' src/incs.h
}
do_build() {
make ${makejobs} k \
CC="$CC" PRODFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS -lm -ldl"
}
do_install() {
vbin k
vlicense LICENSE
}