mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
612 B
Bash
23 lines
612 B
Bash
# $Id: PKGBUILD 48503 2009-08-02 17:00:34Z giovanni $
|
|
# Maintainer: Douglas Soares de Andrade <douglas@archlinux.org>
|
|
# Contributor: d'Ronin <daronin@2600.com>
|
|
|
|
pkgname=botan
|
|
pkgver=1.8.5
|
|
pkgrel=2
|
|
pkgdesc="BSD-licensed crypto library written in C++."
|
|
license=('BSD')
|
|
arch=('i686' 'x86_64')
|
|
url="http://botan.randombit.net/"
|
|
depends=('gcc-libs' 'sh')
|
|
makedepends=('python')
|
|
source=(http://files.randombit.net/botan/Botan-${pkgver}.tgz)
|
|
|
|
build() {
|
|
cd ${srcdir}/Botan-${pkgver}
|
|
./configure.py --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir}/usr install
|
|
}
|
|
md5sums=('26d5d7488bacd12a3779cb3750692399')
|
|
|