mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
24 lines
773 B
Bash
24 lines
773 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
|
|
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
|
|
|
|
pkgname=texi2html
|
|
pkgver=1.82
|
|
pkgrel=1
|
|
pkgdesc="Converts texinfo documents to HTML"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.nongnu.org/texi2html/"
|
|
license=('GPL')
|
|
depends=('perl')
|
|
source=(http://www.very-clever.com/download/nongnu/texi2html/$pkgname-$pkgver.tar.gz)
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
sed -i "s|mandir = /usr/man|mandir = \${prefix}/share/man|g" Makefile
|
|
make || return 1
|
|
make prefix=$startdir/pkg/usr install
|
|
rm -r $startdir/pkg/usr/share/texinfo
|
|
rm -r $startdir/pkg/usr/share/info
|
|
}
|
|
md5sums=('7ea537a8c81ffbf5421b39c0333e91df')
|