mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
24 lines
701 B
Bash
24 lines
701 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
||
|
|
||
|
pkgname=html2text
|
||
|
pkgver=1.3.2a
|
||
|
pkgrel=7
|
||
|
pkgdesc="A HTML to text converter"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.mbayer.de/html2text"
|
||
|
license=('GPL2')
|
||
|
depends=('gcc-libs')
|
||
|
source=(http://ftp.ibiblio.org/pub/linux/apps/www/converters/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('6097fe07b948e142315749e6620c9cfc')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure
|
||
|
make || return 1
|
||
|
install -D -m 755 html2text $pkgdir/usr/bin/html2text
|
||
|
install -D -m 644 html2text.1.gz $pkgdir/usr/share/man/man1/html2text.1.gz
|
||
|
install -D -m 644 html2textrc.5.gz $pkgdir/usr/share/man/man5/html2textrc.5.gz
|
||
|
}
|
||
|
|