mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
Merge branch 'master' of https://github.com/archlinuxarm/PKGBUILDs
This commit is contained in:
commit
1a80e197dd
1 changed files with 49 additions and 0 deletions
49
community/botan/PKGBUILD
Normal file
49
community/botan/PKGBUILD
Normal file
|
@ -0,0 +1,49 @@
|
|||
# $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>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - compiler flags adjustment to build correctly
|
||||
# - --cpu in configure set to correct architectures, autodetect fails
|
||||
|
||||
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"
|
||||
|
||||
if [[ $CARCH == 'armv7h' ]]; then
|
||||
sed -i 's/lang_flags "/lang_flags "-mfpu=vfpv3-d16 -mfloat-abi=hard /' src/build-data/cc/gcc.txt
|
||||
CPU='arm/armv7-a'
|
||||
elif [[ $CARCH == 'armv6h' ]]; then
|
||||
sed -i 's/lang_flags "/lang_flags "-mfpu=vfp -mfloat-abi=hard /' src/build-data/cc/gcc.txt
|
||||
CPU='arm/armv6'
|
||||
elif [[ $CARCH == 'arm' ]]; then
|
||||
CPU='arm/armv5te'
|
||||
fi
|
||||
|
||||
sed -i 's:env python:env python2:' configure.py
|
||||
./configure.py --prefix=/usr --cpu=$CPU
|
||||
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:
|
Loading…
Reference in a new issue