blob: 410f455fc8cbec6a64b20b15a5fc5828c53cc034 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $Id: PKGBUILD 98518 2010-11-10 20:05:00Z angvp $
# Maintainer: Angel Velasquez <angvp@archlinux.org>
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
# Contributor: d'Ronin <daronin@2600.com>
pkgname=botan
pkgver=1.8.11
pkgrel=1
pkgdesc="BSD-licensed crypto library written in C++"
license=('BSD')
arch=('i686' 'x86_64' 'mips64el')
url="http://botan.randombit.net/"
depends=('gcc-libs' 'sh')
makedepends=('python2')
source=(http://files.randombit.net/botan/Botan-${pkgver}.tgz)
options=('force')
md5sums=('ccb2c3cb8a324214a89b45a03422870b')
build() {
cd ${srcdir}/Botan-${pkgver}
sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' configure.py
./configure.py --prefix=/usr
make
make DESTDIR=${pkgdir}/usr install
}
|