mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:17:14 +08:00
29 lines
687 B
Bash
29 lines
687 B
Bash
# $Id: PKGBUILD 71250 2010-03-05 17:28:20Z andrea $
|
|
# Maintainer:
|
|
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
|
|
# Contributor: d'Ronin <daronin@2600.com>
|
|
|
|
pkgname=botan
|
|
pkgver=1.8.8
|
|
pkgrel=1
|
|
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)
|
|
md5sums=('1e84ad0916c5d08e605ebdc4b84c9415')
|
|
options=('force')
|
|
|
|
build() {
|
|
cd ${srcdir}/Botan-${pkgver}
|
|
./configure.py --prefix=/usr
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/Botan-${pkgver}
|
|
make DESTDIR=${pkgdir}/usr install
|
|
}
|