PKGBUILDs/core/texinfo/PKGBUILD

23 lines
682 B
Bash
Raw Normal View History

2009-09-26 14:35:50 +00:00
# Maintainer: Krzysztof "hiciu" Warzecha <kwarzecha7@gmail.com>
2009-09-26 17:10:12 +00:00
# Modified by OpenPogo
2009-09-26 14:35:50 +00:00
pkgname=texinfo
pkgver=4.13a
pkgrel=3
pkgdesc="Utilities to work with and produce manuals, ASCII text, and on-line documentation from a single source file"
arch=(arm)
url="http://www.gnu.org/software/texinfo/"
license=('GPL3')
groups=('base')
depends=('ncurses' 'findutils' 'gzip')
source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
md5sums=('71ba711519209b5fb583fed2b3d86fcb')
build() {
cd ${srcdir}/${pkgname}-4.13
2009-09-26 17:10:12 +00:00
./configure --prefix=/opt || return 1
2009-09-26 14:35:50 +00:00
make || return 1
make DESTDIR=${pkgdir} install || return 1
2009-09-26 17:10:12 +00:00
rm -rf ${pkgdir}/opt/share/{info,man}
2009-09-26 14:35:50 +00:00
}