summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2017-07-10 16:06:13 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2017-07-10 16:06:13 -0500
commit7d12f82c7a67469d0e1295e720ddab93af4e19c4 (patch)
tree2388abfa62adc25b7a217d5c9564022c4c3178c4
parenta53f4ad9755d691480d121a4e42d3e835da0919d (diff)
downloadabslibre-7d12f82c7a67469d0e1295e720ddab93af4e19c4.tar.gz
abslibre-7d12f82c7a67469d0e1295e720ddab93af4e19c4.tar.bz2
abslibre-7d12f82c7a67469d0e1295e720ddab93af4e19c4.zip
Removing d0_blind_id-git
-rw-r--r--pcr/d0_blind_id-git/PKGBUILD44
1 files changed, 0 insertions, 44 deletions
diff --git a/pcr/d0_blind_id-git/PKGBUILD b/pcr/d0_blind_id-git/PKGBUILD
deleted file mode 100644
index ffcc3ee58..000000000
--- a/pcr/d0_blind_id-git/PKGBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# Maintainer (Arch): MrBougo <bougospam at gmail dot com>
-pkgname=d0_blind_id-git
-pkgver=20120716
-pkgrel=1
-pkgdesc="Cryptographic library for identification with Schnorr ID scheme and Blind RSA Signatures"
-arch=('i686' 'x86_64' 'mips64el')
-url="http://github.com/divVerent/d0_blind_id"
-license=('BSD')
-depends=('gmp')
-makedepends=('git')
-conflicts=()
-options=('!libtool')
-
-_gitroot="git://git.xonotic.org/xonotic/d0_blind_id.git"
-_gitname="d0_blind_id"
-
-build() {
- cd "$srcdir"
- msg "Connecting to GIT server...."
-
- if [ -d $_gitname ] ; then
- cd $_gitname && git pull origin
- msg "The local files are updated."
- else
- git clone $_gitroot $_gitname
- fi
-
- msg "GIT checkout done or server timeout"
- msg "Starting make..."
-
- rm -rf "$srcdir/$_gitname-build"
- git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
- cd "$srcdir/$_gitname-build"
-
- sh autogen.sh
- ./configure --prefix=/usr
- make
-}
-
-package() {
- cd "$srcdir/$_gitname-build"
- make DESTDIR="$pkgdir/" install
- install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}