27 lines
807 B
Bash
27 lines
807 B
Bash
# Template file for 'miller'
|
|
pkgname=miller
|
|
version=5.0.1
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake libtool flex asciidoc"
|
|
short_desc="Tool like sed/awk/cut/join/sort for name-indexed data such as CSV"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="2-clause-BSD"
|
|
homepage="http://johnkerl.org/miller/"
|
|
distfiles="https://github.com/johnkerl/${pkgname}/archive/v${version}.tar.gz"
|
|
_changelog="https://github.com/johnkerl/miller/releases"
|
|
checksum=94bf64f405b14e133c67435d54711ccdce9786d65d56995e68c53ed250faa58d
|
|
|
|
pre_configure() {
|
|
# Disable debugging and profiling versions, broken on musl.
|
|
echo 'noinst_PROGRAMS=' >> c/Makefile.am
|
|
autoreconf -fi
|
|
}
|
|
|
|
pre_build() {
|
|
make -C c/parsing lemon CC="$BUILD_CC" CFLAGS="$BUILD_CFLAGS -fPIC"
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE.txt
|
|
}
|