26 lines
689 B
Bash
26 lines
689 B
Bash
# Template file for 'txr'
|
|
pkgname=txr
|
|
version=172
|
|
revision=1
|
|
build_style=configure
|
|
hostmakedepends="bison flex"
|
|
short_desc="Programming language for convenient data munging"
|
|
maintainer="Oliver Kiddle <okiddle@yahoo.co.uk>"
|
|
license="2-clause-BSD"
|
|
homepage="http://www.nongnu.org/txr/"
|
|
distfiles="http://www.kylheku.com/cgit/txr/snapshot/${pkgname}-${version}.tar.bz2"
|
|
checksum=6456992490a5a7ab516117f6537ee0cd3ee57fc1bcb17167464709f64184af48
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
aarch64*) broken="#error port me!" ;;
|
|
esac
|
|
|
|
do_configure() {
|
|
./configure --prefix=/usr --ccname="${CC}" \
|
|
--platform-cflags="${CFLAGS}" \
|
|
--platform-ldflags="${LDFLAGS}"
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|