void-packages/srcpkgs/txr/template
2019-10-29 21:12:16 +01:00

36 lines
896 B
Bash

# Template file for 'txr'
pkgname=txr
version=227
revision=1
build_style=configure
make_check_target=tests
hostmakedepends="bison flex"
short_desc="Programming language for convenient data munging"
maintainer="Oliver Kiddle <okiddle@yahoo.co.uk>"
license="BSD-2-Clause"
homepage="http://www.nongnu.org/txr/"
distfiles="http://www.kylheku.com/cgit/txr/snapshot/${pkgname}-${version}.tar.bz2"
checksum=fae7eb3ed6611e0a31cc5adc32a6e03e182e7412bdc99de2bcef4bb71c7913ee
if [ "$CROSS_BUILD" ]; then
hostmakedepends+=" txr"
fi
do_configure() {
./configure --prefix=/usr --ccname="${CC}" \
--platform-cflags="${CFLAGS}" \
--platform-ldflags="${LDFLAGS}"
if [ "$CROSS_BUILD" ]; then
sed -i 's#^TXR :=.*#TXR = /usr/bin/txr#' Makefile
fi
}
pre_check() {
rm -rf tests/017
}
post_install() {
vlicense LICENSE
vmkdir usr/share/vim/vimfiles/syntax
vcopy *.vim usr/share/vim/vimfiles/syntax/
}