New package: redo-1.2

This commit is contained in:
Christian Neukirchen 2015-08-28 18:21:55 +02:00
parent 479445b042
commit 82909fad2c
1 changed files with 36 additions and 0 deletions

36
srcpkgs/redo/template Normal file
View File

@ -0,0 +1,36 @@
# Template file for 'redo'
pkgname=redo
version=1.2
revision=1
create_wrksrc=yes
build_pie=yes
hostmakedepends="perl"
short_desc="Incremental build system (version of de Boyne Pollard)"
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
license="ISC"
homepage="http://homepage.ntlworld.com/jonathan.deboynepollard/Softwares/redo.html"
distfiles="http://homepage.ntlworld.com/jonathan.deboynepollard/Softwares/${pkgname}-${version}.tar.bz2"
checksum=f7ce83c6d125555433cdd520fd325442b824bacb4b1da7810a02d157258dcb41
do_configure() {
./package/prepare
echo "$CXX" >build/cxx
echo "$CPPFLAGS" >build/cxxflags
echo "$CXXFLAGS" >build/cxxflags
echo "$LDFLAGS" >build/ldflags
}
do_build() {
./package/make
}
do_install() {
vbin build/redo
vman build/redo.1
for cmd in redo-ifcreate redo-ifchange cubehash; do
ln -sf redo ${DESTDIR}/usr/bin/${cmd}
vman build/${cmd}.1
done
vlicense source/COPYING
}