diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-12-23 17:14:14 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-12-23 17:14:14 -0200 |
commit | 4ee8727fa04b4be73146927f55eecb8ad8ed28d7 (patch) | |
tree | 7bfaddf26730e9c3a983150e68a2f5d99efd7914 /pcr | |
parent | ae70ff169b87bcfb85392d35cf785d0299f6b2cd (diff) | |
parent | 8cf6435df66cddde802b11efd56b21f1c7798eee (diff) | |
download | abslibre-4ee8727fa04b4be73146927f55eecb8ad8ed28d7.tar.gz abslibre-4ee8727fa04b4be73146927f55eecb8ad8ed28d7.tar.bz2 abslibre-4ee8727fa04b4be73146927f55eecb8ad8ed28d7.zip |
Merge branch 'master' of ssh://projects.parabola.nu/~git/abslibre/abslibre
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/bup/PKGBUILD | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/pcr/bup/PKGBUILD b/pcr/bup/PKGBUILD deleted file mode 100644 index eeea2b521..000000000 --- a/pcr/bup/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# Contributor (Arch): Bram Schoenmakers <me@bramschoenmakers.nl> -# Contributor (Arch): henning mueller <henning@orgizm.net> -# Maintainer : Parabola GNU / Linux-libre Aurélien Desbrières <aurelien@cwb.io> - -# If you'd like to have documentation, please set the variable below to 1. -# This implies installing pandoc, which in turn depends on many Haskell packages. -# Which you can build if you wish. -_havedocs=0 - -pkgname=bup -pkgver=0.25rc1 -_pkgver=0.25-rc1 -pkgrel=2 -pkgdesc="Backup tool using git pack files." -arch=('i686' 'x86_64' 'mips64el') -url="http://github.com/apenwarr/bup" -license=('GPL') -depends=('python2-fuse' 'par2cmdline' 'python' 'git') -[ $_havedocs = 1 ] && makedepends=('haskell-pandoc') -source=("https://github.com/apenwarr/${pkgname}/archive/${pkgname}-${_pkgver}.tar.gz") - -build() { - cd "${srcdir}/${pkgname}-${pkgname}-${_pkgver}" - - find . -name \*.py | xargs sed -i 's:env python:env python2:' - sed -i 's:PYTHON=python:PYTHON=python2:' Makefile - - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgname}-${_pkgver}" - make DESTDIR=$pkgdir install -} - |