2013-03-23 10:47:59 +08:00
|
|
|
# Maintainer: abveritas[at]chakra-project[dot]org>
|
2010-03-13 23:25:19 +08:00
|
|
|
|
|
|
|
pkgname=texinfo
|
2013-03-23 10:47:59 +08:00
|
|
|
pkgver=5.1
|
2013-07-26 03:19:58 +08:00
|
|
|
pkgrel=2
|
2010-03-13 23:25:19 +08:00
|
|
|
pkgdesc="Utilities to work with and produce manuals, ASCII text, and on-line documentation from a single source file"
|
2013-03-23 10:47:59 +08:00
|
|
|
arch=('x86_64')
|
2010-03-13 23:25:19 +08:00
|
|
|
url="http://www.gnu.org/software/texinfo/"
|
|
|
|
license=('GPL3')
|
|
|
|
groups=('base')
|
2013-03-23 10:47:59 +08:00
|
|
|
depends=('ncurses' 'findutils' 'gzip' 'sh' 'perl')
|
2010-03-13 23:25:19 +08:00
|
|
|
install=texinfo.install
|
2013-03-23 10:47:59 +08:00
|
|
|
source=("ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz")
|
|
|
|
md5sums=('52ee905a3b705020d2a1b6ec36d53ca6')
|
2010-03-13 23:25:19 +08:00
|
|
|
|
|
|
|
build() {
|
2013-03-23 10:47:59 +08:00
|
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
|
2010-05-16 23:08:55 +08:00
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2013-03-23 10:47:59 +08:00
|
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
|
2010-05-16 23:08:55 +08:00
|
|
|
make DESTDIR=${pkgdir} install
|
2010-03-13 23:25:19 +08:00
|
|
|
}
|