2008-10-23 16:26:11 +00:00
|
|
|
# Template file for 'texinfo'
|
|
|
|
pkgname=texinfo
|
|
|
|
version=4.13a
|
2013-02-07 15:54:38 +00:00
|
|
|
revision=10
|
2008-10-23 16:26:11 +00:00
|
|
|
wrksrc="$pkgname-4.13"
|
2013-03-24 09:21:58 +00:00
|
|
|
makedepends="ncurses-devel"
|
2014-01-01 15:10:11 +00:00
|
|
|
conflicts="chroot-texinfo>=0"
|
|
|
|
depends="gzip"
|
2008-10-23 16:26:11 +00:00
|
|
|
short_desc="The GNU Documentation System"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2012-02-14 14:41:36 +00:00
|
|
|
license="GPL-3"
|
2013-02-01 10:37:50 +00:00
|
|
|
homepage="http://www.gnu.org/software/texinfo/"
|
|
|
|
distfiles="http://ftp.gnu.org/gnu/$pkgname/$pkgname-$version.tar.gz"
|
2008-10-23 16:26:11 +00:00
|
|
|
checksum=1303e91a1c752b69a32666a407e9fbdd6e936def4b09bc7de30f416301530d68
|
2009-10-17 14:41:06 +00:00
|
|
|
|
2013-05-26 08:41:55 +00:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
|
|
hostmakedepends="ncurses-devel"
|
|
|
|
fi
|
|
|
|
|
2013-02-07 15:54:38 +00:00
|
|
|
do_configure() {
|
2013-05-26 08:41:55 +00:00
|
|
|
./configure ${configure_args}
|
2013-02-07 15:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_build() {
|
|
|
|
if [ -d tools ]; then
|
2013-05-26 08:41:55 +00:00
|
|
|
make ${makejobs} -C tools/gnulib/lib
|
|
|
|
make ${makejobs} -C tools
|
|
|
|
fi
|
|
|
|
make ${makejobs}
|
2013-02-07 15:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
2013-05-26 08:41:55 +00:00
|
|
|
make DESTDIR=${DESTDIR} install
|
2013-02-07 15:54:38 +00:00
|
|
|
|
2012-02-14 14:41:36 +00:00
|
|
|
rm -f ${DESTDIR}/usr/share/info/dir
|
2010-10-26 13:24:09 +00:00
|
|
|
# Compress manually info files.
|
|
|
|
gzip -9 ${DESTDIR}/usr/share/info/*
|
2009-10-17 14:41:06 +00:00
|
|
|
}
|