void-packages/srcpkgs/miller/template
Piotr Wójcik 66c5848531 srcpkgs: remove tzdata from checkdepends
tzdata was added to base-chroot
2021-06-24 21:16:44 +02:00

28 lines
807 B
Bash

# Template file for 'miller'
pkgname=miller
version=5.10.2
revision=1
build_style=gnu-configure
hostmakedepends="asciidoc automake flex libtool"
short_desc="Tool like sed/awk/cut/join/sort for name-indexed data such as CSV"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="BSD-2-Clause"
homepage="http://johnkerl.org/miller/"
changelog="https://github.com/johnkerl/miller/releases"
distfiles="https://github.com/johnkerl/${pkgname}/archive/v${version}.tar.gz"
checksum=b6026479ee7315656d7ec228d0084f86d4cecc5b8b00d5400f5fb3600af65eb3
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
}