diff options
Diffstat (limited to 'community/html2text/PKGBUILD')
-rw-r--r-- | community/html2text/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/html2text/PKGBUILD b/community/html2text/PKGBUILD new file mode 100644 index 000000000..ecccaae48 --- /dev/null +++ b/community/html2text/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 5125 2009-11-06 16:14:08Z ibiru $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> + +pkgname=html2text +pkgver=1.3.2a +pkgrel=8 +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 +} + |