core/texinfo/PKGBUILD

28 lines
675 B
Bash
Raw Normal View History

# Maintainer: abveritas[at]chakra-project[dot]org>
2010-03-13 23:25:19 +08:00
pkgname=texinfo
pkgver=5.1
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"
arch=('x86_64')
2010-03-13 23:25:19 +08:00
url="http://www.gnu.org/software/texinfo/"
license=('GPL3')
groups=('base')
depends=('ncurses' 'findutils' 'gzip' 'sh' 'perl')
2010-03-13 23:25:19 +08:00
install=texinfo.install
source=("ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz")
md5sums=('52ee905a3b705020d2a1b6ec36d53ca6')
2010-03-13 23:25:19 +08:00
build() {
cd ${srcdir}/${pkgname}-${pkgver}
2010-05-16 23:08:55 +08:00
./configure --prefix=/usr
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
2010-05-16 23:08:55 +08:00
make DESTDIR=${pkgdir} install
2010-03-13 23:25:19 +08:00
}