New package crypto++-562 (required by a newer synergy version).
This commit is contained in:
parent
12ba544d5e
commit
32fb1d9a30
4 changed files with 57 additions and 0 deletions
|
@ -1247,3 +1247,4 @@ libdb-5.3.so libdb-5.3.21_1
|
|||
libdb_cxx-5.3.so libdb-cxx-5.3.21_1
|
||||
libsdb.so.0 sdb-0.6.2_1
|
||||
libcares.so.2 c-ares-1.10.0_1
|
||||
libcryptopp.so crypto++-562_1
|
||||
|
|
1
srcpkgs/crypto++-devel
Symbolic link
1
srcpkgs/crypto++-devel
Symbolic link
|
@ -0,0 +1 @@
|
|||
crypto++
|
11
srcpkgs/crypto++/files/libcrypto++.pc
Normal file
11
srcpkgs/crypto++/files/libcrypto++.pc
Normal file
|
@ -0,0 +1,11 @@
|
|||
# Written by Alexander Rødseth <rodseth@gmail.com>
|
||||
|
||||
prefix=/usr
|
||||
libdir=${prefix}/lib
|
||||
includedir=${prefix}/include
|
||||
|
||||
Name: libcrypto++-@@VERSION@@
|
||||
Description: Class library of cryptographic schemes
|
||||
Version: @@VERSION@@
|
||||
Libs: -L${libdir} -lcryptopp
|
||||
Cflags: -I${includedir}
|
44
srcpkgs/crypto++/template
Normal file
44
srcpkgs/crypto++/template
Normal file
|
@ -0,0 +1,44 @@
|
|||
# Template build file for 'crypto++'.
|
||||
pkgname=crypto++
|
||||
version=562
|
||||
revision=1
|
||||
create_wrksrc=yes
|
||||
hostmakedepends="unzip"
|
||||
short_desc="A free C++ class library of cryptographic schemes"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
homepage="http://www.cryptopp.com/"
|
||||
license="Boost Software License 1.0, Public domain"
|
||||
distfiles="http://www.cryptopp.com/cryptopp${version}.zip"
|
||||
checksum=5cbfd2fcb4a6b3aab35902e2e0f3b59d9171fee12b3fc2b363e1801dfec53574
|
||||
|
||||
do_build() {
|
||||
sed -i -e 's/^CXXFLAGS/#CXXFLAGS/' GNUmakefile
|
||||
export CXXFLAGS="${CXXFLAGS} -DNDEBUG -fPIC"
|
||||
make CXX=$CXX -f GNUmakefile ${makejobs}
|
||||
make CXX=$CXX libcryptopp.so ${makejobs}
|
||||
}
|
||||
|
||||
do_install() {
|
||||
install -d ${DESTDIR}/usr/{lib/pkgconfig,include/cryptopp}
|
||||
install -m644 *.h ${DESTDIR}/usr/include/cryptopp/
|
||||
install -m644 libcryptopp.a ${DESTDIR}/usr/lib/libcryptopp.a
|
||||
install -m644 libcryptopp.so ${DESTDIR}/usr/lib/libcryptopp.so
|
||||
install -m644 ${FILESDIR}/libcrypto++.pc ${DESTDIR}/usr/lib/pkgconfig/libcrypto++.pc
|
||||
sed -e "s,@@VERSION@@,${version},g" -i ${DESTDIR}/usr/lib/pkgconfig/libcrypto++.pc
|
||||
install -Dm644 License.txt ${DESTDIR}/usr/share/licenses/${pkgname}/LICENSE
|
||||
}
|
||||
|
||||
crypto++-devel_package() {
|
||||
short_desc+=" - development files"
|
||||
pkg_install() {
|
||||
vmove usr/include
|
||||
vmove "usr/lib/*.a"
|
||||
vmove usr/lib/pkgconfig
|
||||
}
|
||||
}
|
||||
|
||||
crypto++_package() {
|
||||
pkg_install() {
|
||||
vmove all
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue