diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-03-27 17:28:36 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-03-27 17:28:36 -0300 |
commit | e8dc5ba4990c0b4671cc471d6d1fb34a92afcadb (patch) | |
tree | 2a9fab9b2c1d49856cfc892c50c952d1f631f5b2 | |
parent | 9eef2152d3a7bf82a42983dd3453725e13030e27 (diff) | |
download | abslibre-e8dc5ba4990c0b4671cc471d6d1fb34a92afcadb.tar.gz abslibre-e8dc5ba4990c0b4671cc471d6d1fb34a92afcadb.tar.bz2 abslibre-e8dc5ba4990c0b4671cc471d6d1fb34a92afcadb.zip |
lesspipe-1.82-3.parabola1: fix FS#44365 -> https://bugs.archlinux.org/task/44365
-rw-r--r-- | libre/lesspipe/PKGBUILD | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libre/lesspipe/PKGBUILD b/libre/lesspipe/PKGBUILD index 1bbc5a16d..942b526de 100644 --- a/libre/lesspipe/PKGBUILD +++ b/libre/lesspipe/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 114038 2014-07-01 12:22:14Z spupykin $ +# $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=2.parabola1 +pkgrel=3.parabola1 pkgdesc='an input filter for the pager less, with libarchive support' depends=('less') arch=('any') @@ -25,15 +25,18 @@ optdepends=('perl' '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 +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 } |