blob: de9454080e32b6f49d7ff3d114fe36425f3ef19a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Librairie de cryptologie en C++
# URL: http://www.cryptopp.com/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: unzip
# Run on: unzip
name=crypto++
version=5.6.0
release=1
source=(http://www.cryptopp.com/${name/++/pp}${version//\./}.zip)
build() {
make CXXFLAGS="$CXXFLAGS"
make PREFIX=$PKG/usr install
rm -rf $PKG/usr/bin
}
|