void-packages/srcpkgs/miller/template
2015-09-24 13:57:13 +02:00

27 lines
768 B
Bash

# Template file for 'miller'
pkgname=miller
version=2.2.1
revision=2
build_style=gnu-configure
build_pie=yes
hostmakedepends="automake libtool flex asciidoc"
short_desc="Tool like sed/awk/cut/join/sort for name-indexed data such as CSV"
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"
checksum=816a1822cac06752e6ea703d435e0dff65ab23d393350afadd46eb422448503f
pre_configure() {
# Disable debugging and profiling versions, broken on musl.
echo 'noinst_PROGRAMS=' >> c/Makefile.am
autoreconf -fi
}
pre_build() {
make -C c/dsls lemon CC="$BUILD_CC" CFLAGS="$BUILD_CFLAGS -fPIC"
}
post_install() {
vlicense LICENSE.txt
}