void-packages/srcpkgs/texinfo/template

33 lines
831 B
Plaintext
Raw Normal View History

# Template file for 'texinfo'
pkgname=texinfo
2014-09-08 19:04:21 +00:00
version=5.2
revision=1
hostmakedepends="perl ncurses-devel"
makedepends="ncurses-devel"
conflicts="chroot-texinfo>=0"
2014-09-08 19:04:21 +00:00
depends="gzip perl"
short_desc="The GNU Documentation System"
maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-3"
homepage="http://www.gnu.org/software/texinfo/"
distfiles="http://ftp.gnu.org/gnu/$pkgname/$pkgname-$version.tar.gz"
2014-09-08 19:04:21 +00:00
checksum=6b8ca30e9b6f093b54fe04439e5545e564c63698a806a48065c0bba16994cf74
2013-02-07 15:54:38 +00:00
do_configure() {
./configure ${configure_args}
2013-02-07 15:54:38 +00:00
}
do_build() {
if [ -d tools ]; then
make ${makejobs} -C tools/gnulib/lib
make ${makejobs} -C tools
fi
make ${makejobs}
2013-02-07 15:54:38 +00:00
}
do_install() {
make DESTDIR=${DESTDIR} install
2013-02-07 15:54:38 +00:00
rm -f ${DESTDIR}/usr/share/info/dir
# Compress manually info files.
gzip -9 ${DESTDIR}/usr/share/info/*
}