summaryrefslogtreecommitdiff
path: root/community/html2text/PKGBUILD
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/html2text/PKGBUILD
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/html2text/PKGBUILD')
-rw-r--r--community/html2text/PKGBUILD23
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
+}
+