summaryrefslogtreecommitdiff
path: root/community/botan
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/botan
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/botan')
-rw-r--r--community/botan/PKGBUILD35
1 files changed, 0 insertions, 35 deletions
diff --git a/community/botan/PKGBUILD b/community/botan/PKGBUILD
deleted file mode 100644
index 190945b06..000000000
--- a/community/botan/PKGBUILD
+++ /dev/null
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 87983 2013-04-09 20:48:46Z arodseth $
-# Maintainer: Alexander Rødseth <rodseth@gmail.com>
-# Contributor: Angel Velasquez <angvp@archlinux.org>
-# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
-# Contributor: d'Ronin <daronin@2600.com>
-
-pkgname=botan
-pkgver=1.10.5
-pkgrel=1
-pkgdesc='Crypto library written in C++'
-license=('BSD')
-arch=('x86_64' 'i686')
-url='http://botan.randombit.net/'
-depends=('gcc-libs' 'sh')
-makedepends=('python2')
-source=("http://files.randombit.net/botan/Botan-${pkgver}.tbz")
-sha256sums=('2934c00533847dc93c485081d3ce6aae4a110151a69b587b895241159da77cf3')
-
-build() {
- cd "$srcdir/Botan-$pkgver"
-
- sed -i 's:env python:env python2:' configure.py
- ./configure.py --prefix=/usr
- make
-}
-
-package() {
- cd "$srcdir/Botan-$pkgver"
-
- make DESTDIR="$pkgdir/usr" install
- install -Dm644 doc/license.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
- find "$pkgdir/usr/share/doc" -type f -exec chmod 0644 {} \;
-}
-
-# vim:set ts=2 sw=2 et: