core/texinfo/PKGBUILD

29 lines
801 B
Bash
Raw Normal View History

2010-05-16 23:08:55 +08:00
# $Id: PKGBUILD 78099 2010-04-19 09:54:27Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
2010-03-13 23:25:19 +08:00
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=texinfo
pkgver=4.13a
2010-05-16 23:08:55 +08:00
pkgrel=4
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=('i686' 'x86_64')
url="http://www.gnu.org/software/texinfo/"
license=('GPL3')
groups=('base')
depends=('ncurses' 'findutils' 'gzip')
install=texinfo.install
source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
md5sums=('71ba711519209b5fb583fed2b3d86fcb')
sha1sums=('a1533cf8e03ea4fa6c443b73f4c85e4da04dead0')
build() {
cd ${srcdir}/${pkgname}-4.13
2010-05-16 23:08:55 +08:00
./configure --prefix=/usr
make
}
package() {
cd ${srcdir}/${pkgname}-4.13
make DESTDIR=${pkgdir} install
2010-03-13 23:25:19 +08:00
}