removed extra/crypto++

This commit is contained in:
Kevin Mihelich 2016-09-17 16:10:25 +00:00
parent ec7f1601c1
commit ceae11ef6a
2 changed files with 0 additions and 49 deletions

View file

@ -1,38 +0,0 @@
# $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>
# remove when bumped upstream
pkgname=crypto++
pkgver=5.6.3
_srcver=${pkgver//./}
pkgrel=1
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')
source=("http://www.cryptopp.com/cryptopp${_srcver}.zip"
'libcrypto++.pc')
md5sums=('3c5b70e2ec98b7a24988734446242d07'
'46de3847c59ad16456fa863eb33e73b2')
build() {
sed -i -e 's/^CXXFLAGS/#CXXFLAGS/' GNUmakefile
export CXXFLAGS="${CXXFLAGS} -DNDEBUG -fPIC"
make -f GNUmakefile
make libcryptopp.so
}
package() {
install -d ${pkgdir}/usr/{lib/pkgconfig,include/cryptopp}
install -m644 *.h ${pkgdir}/usr/include/cryptopp/
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"
}

View file

@ -1,11 +0,0 @@
# Written by Alexander Rødseth <rodseth@gmail.com>
prefix=/usr
libdir=${prefix}/lib
includedir=${prefix}/include
Name: libcrypto++-5.6.2
Description: Class library of cryptographic schemes
Version: 5.6.2
Libs: -L${libdir} -lcryptopp
Cflags: -I${includedir}