# $Id: PKGBUILD 130024 2015-03-27 10:04:07Z spupykin $ # Maintainer (Arch): Angel 'angvp' Velasquez # Contributor (Arch): solsTiCe d'Hiver # Maintainer: André Silva pkgname=lesspipe pkgver=1.82 pkgrel=3.parabola1 pkgdesc='an input filter for the pager less, with libarchive support' depends=('less') arch=('any') license=('GPL') replaces=(${pkgname}-libre) conflicts=(${pkgname}-libre) optdepends=('perl' 'rpmextract: support for rpm files' 'fastjar: support for jar files' 'unzip: support for zip files' 'libarchive: support for rar files' 'p7zip: support for 7za files' 'cabextract: support for cab files' 'cdrkit: support for iso files' 'html2text: support for html files' 'antiword: support for word file' 'unrtf: support for rtf file' 'imagemagick: support for some image file') url="http://www-zeuthen.desy.de/~friebel/unix/lesspipe.html" source=("http://downloads.sourceforge.net/project/lesspipe/lesspipe/$pkgver/lesspipe-$pkgver.tar.gz" "html2text.patch::https://bugs.archlinux.org/task/44365?getfile=12856" lesspipe.sh libarchive.patch) md5sums=('dd6f7bc9b9f9afaf04c9aa0cdbe9fe56' '4bb768cae4723b3719a70848d36cf5fe' '675b56f560c600f43108adfd98222251' 'ec452ea980d5c1e254e9775fd424c18c') prepare() { cd $srcdir/$pkgname-$pkgver patch -p1 <$srcdir/html2text.patch patch -Np1 -i ../libarchive.patch } build() { cd $srcdir/$pkgname-$pkgver ./configure --prefix=/usr --yes make } package() { cd $srcdir/$pkgname-$pkgver mkdir -p $pkgdir/usr/share/man/man1 make install PREFIX=$pkgdir/usr install -D $srcdir/lesspipe.sh $pkgdir/etc/profile.d/lesspipe.sh }