summaryrefslogtreecommitdiff
path: root/libre/lesspipe-libre
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-01-08 04:51:24 -0200
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-01-08 04:51:24 -0200
commit95def50238d1fa35819d2f67079ce97dc96cd12f (patch)
treeca7d966d2348f174f84a2370f4c66e818b4c933a /libre/lesspipe-libre
parent53ae25ee5242912f13151330dcd5c73ba9e0dfba (diff)
remove deprecated packages
Diffstat (limited to 'libre/lesspipe-libre')
-rw-r--r--libre/lesspipe-libre/PKGBUILD42
-rw-r--r--libre/lesspipe-libre/lesspipe.sh2
-rw-r--r--libre/lesspipe-libre/rePKGBUILD26
3 files changed, 0 insertions, 70 deletions
diff --git a/libre/lesspipe-libre/PKGBUILD b/libre/lesspipe-libre/PKGBUILD
deleted file mode 100644
index 48d5ebe0f..000000000
--- a/libre/lesspipe-libre/PKGBUILD
+++ /dev/null
@@ -1,42 +0,0 @@
-# $Id: PKGBUILD 14692 2010-04-07 09:06:46Z spupykin $
-# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
-# Contributor: solsTiCe d'Hiver <solstice.dhiver@gmail.com>
-
-_pkgname=lesspipe
-pkgname=lesspipe-libre
-pkgver=1.71
-pkgrel=1
-pkgdesc='an input filter for the pager less'
-depends=('less')
-arch=('i686' 'x86_64')
-license=('GPL')
-optdepends=('rpmextract: support for rpm files'
- 'fastjar: support for jar files'
- 'unzip: support for zip 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://www-zeuthen.desy.de/~friebel/unix/less/lesspipe.tar.gz \
- lesspipe.sh)
-md5sums=('6d921dc4ce9809d405cb8d694ac7cbbd'
- '675b56f560c600f43108adfd98222251')
-provides=("$_pkgname=$pkgver")
-conflicts=("$_pkgname")
-replaces=("$_pkgname")
-
-build() {
- cd $srcdir/$_pkgname-$pkgver
-
- ./configure --prefix=/usr --yes
- make || return 1
- mkdir -p $pkgdir/usr/share/man/man1
- make install PREFIX=$pkgdir/usr || return 1
-
- install -D $srcdir/lesspipe.sh $pkgdir/etc/profile.d/lesspipe.sh
-}
-
diff --git a/libre/lesspipe-libre/lesspipe.sh b/libre/lesspipe-libre/lesspipe.sh
deleted file mode 100644
index 05526e46c..000000000
--- a/libre/lesspipe-libre/lesspipe.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-export LESSOPEN='|/usr/bin/lesspipe.sh %s'
-
diff --git a/libre/lesspipe-libre/rePKGBUILD b/libre/lesspipe-libre/rePKGBUILD
deleted file mode 100644
index cb388a715..000000000
--- a/libre/lesspipe-libre/rePKGBUILD
+++ /dev/null
@@ -1,26 +0,0 @@
-# Maintainer: Nicolás Reynolds <fauno@kiwwwi.com.ar>
-source PKGBUILD
-#CARCH=x86_64
-unset build package md5sums source
-_repo=community # Put the repo here
-_mirror=http://mirrors.kernel.org/archlinux # Put mirror here
-source=(PKGBUILD
- "${_mirror}/${_repo}/os/${CARCH}/${pkgname%-libre}-$pkgver-$pkgrel-$CARCH$PKGEXT"
- # files for pkg modifications below this line
- )
-options=(!strip)
-
-build() {
- cd "${srcdir}/"
- rm .{INSTALL,PKGINFO} || true
- # put actions for package modifications below this line
-
-}
-
-package() {
- find ${srcdir} -maxdepth 1 -type l -delete
- cp -a ${srcdir}/* ${pkgdir}
-}
-
-
-# vim:set ts=2 sw=2 et: