summaryrefslogtreecommitdiff
path: root/libre/lesspipe/PKGBUILD
blob: 942b526ded32afed97aaad17373bff22b25b0145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# $Id: PKGBUILD 130024 2015-03-27 10:04:07Z spupykin $
# Maintainer (Arch): Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
# Contributor (Arch): solsTiCe d'Hiver <solstice.dhiver@gmail.com>
# Maintainer: André Silva <emulatorman@parabola.nu>

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
}