diff options
Diffstat (limited to 'abs/extra/crypto++')
-rw-r--r-- | abs/extra/crypto++/PKGBUILD | 25 | ||||
-rw-r--r-- | abs/extra/crypto++/libcrypto++.pc | 11 |
2 files changed, 28 insertions, 8 deletions
diff --git a/abs/extra/crypto++/PKGBUILD b/abs/extra/crypto++/PKGBUILD index 0f07ea5..45c90d5 100644 --- a/abs/extra/crypto++/PKGBUILD +++ b/abs/extra/crypto++/PKGBUILD @@ -1,5 +1,6 @@ -# $Id: PKGBUILD 98274 2010-11-06 10:51:05Z giovanni $ +# $Id$ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: Alexander Rødseth <rodseth@gmail.com> # Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: Kritoke <kritoke@gamebox.net> # Contributor: jlvsimoes <jlvsimoes@oninet.pt> @@ -7,21 +8,29 @@ pkgname=crypto++ pkgver=5.6.1 _srcver=561 -pkgrel=1 +pkgrel=2 pkgdesc="A free C++ class library of cryptographic schemes." arch=('i686' 'x86_64') +url="http://www.cryptopp.com/" license=('custom') +depends=('gcc-libs') makedepends=('unzip') -url="http://www.cryptopp.com/" -source=(http://www.cryptopp.com/cryptopp${_srcver}.zip) -md5sums=('96cbeba0907562b077e26bcffb483828') +source=(http://www.cryptopp.com/cryptopp${_srcver}.zip + libcrypto++.pc) +md5sums=('96cbeba0907562b077e26bcffb483828' + '2337c6edbc552d9142cae8e0854715e7') build() { cd ${srcdir} sed -i -e 's/^CXXFLAGS/#CXXFLAGS/' GNUmakefile - make -f GNUmakefile || return 1 - install -d ${pkgdir}/usr/{lib,include/cryptopp} + export CXXFLAGS="${CXXFLAGS} -DNDEBUG -fPIC" + make -f GNUmakefile + make libcryptopp.so + install -d ${pkgdir}/usr/{lib/pkgconfig,include/cryptopp} install -m644 *.h ${pkgdir}/usr/include/cryptopp/ - install -m644 libcryptopp.a ${pkgdir}/usr/lib/ + install -m644 libcryptopp.a ${pkgdir}/usr/lib/libcryptopp.a + install -m644 libcryptopp.so ${pkgdir}/usr/lib/libcryptopp.so + install -m644 ${srcdir}/libcrypto++.pc "${pkgdir}/usr/lib/pkgconfig/libcrypto++.pc" install -D -m644 License.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE } + diff --git a/abs/extra/crypto++/libcrypto++.pc b/abs/extra/crypto++/libcrypto++.pc new file mode 100644 index 0000000..698d761 --- /dev/null +++ b/abs/extra/crypto++/libcrypto++.pc @@ -0,0 +1,11 @@ +# Written by Alexander Rødseth <rodseth@gmail.com> + +prefix=/usr +libdir=${prefix}/lib +includedir=${prefix}/include + +Name: libcrypto++-5.6.1 +Description: Class library of cryptographic schemes +Version: 5.6.1 +Libs: -L${libdir} -lcryptopp +Cflags: -I${includedir} |