void-packages/srcpkgs/miller/template

27 lines
754 B
Bash
Raw Normal View History

2015-08-28 13:28:22 +00:00
# Template file for 'miller'
pkgname=miller
2015-12-10 12:35:32 +00:00
version=3.1.2
2015-10-18 12:50:56 +00:00
revision=1
2015-09-24 10:15:01 +00:00
build_style=gnu-configure
hostmakedepends="automake libtool flex asciidoc"
2015-09-01 09:49:28 +00:00
short_desc="Tool like sed/awk/cut/join/sort for name-indexed data such as CSV"
2015-08-28 13:28:22 +00:00
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
license="BSD-2"
homepage="http://johnkerl.org/miller/"
distfiles="https://github.com/johnkerl/${pkgname}/archive/v${version}.tar.gz"
2015-12-10 12:35:32 +00:00
checksum=78439ad869214c4c177df82c9c8daa13e9fe788722bf2d73cb3069bfc1bfc33b
2015-08-28 13:28:22 +00:00
2015-09-24 10:15:01 +00:00
pre_configure() {
# Disable debugging and profiling versions, broken on musl.
echo 'noinst_PROGRAMS=' >> c/Makefile.am
2015-09-24 10:15:01 +00:00
autoreconf -fi
2015-08-28 13:28:22 +00:00
}
2015-09-24 10:15:01 +00:00
pre_build() {
make -C c/dsls lemon CC="$BUILD_CC" CFLAGS="$BUILD_CFLAGS -fPIC"
}
post_install() {
2015-08-28 13:28:22 +00:00
vlicense LICENSE.txt
}