summaryrefslogtreecommitdiff
path: root/recipes-support/libcryptopp/libcryptopp_5.6.2.bb
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2016-06-08 14:33:08 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2016-06-30 13:28:27 +0200
commit0fa90ef5f7b1fd23b3a94fe66701c8807bb0df74 (patch)
tree34088051edc3729cad11a8f72c6833b6ce7623ef /recipes-support/libcryptopp/libcryptopp_5.6.2.bb
parent5c4656fd2d4e57a003dc6e839fb6337c5063ddf1 (diff)
libcryptopp: update to latest 5.6.3
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> Acked-by: Max Krummenacher <max.krummenacher@toradex.com>
Diffstat (limited to 'recipes-support/libcryptopp/libcryptopp_5.6.2.bb')
-rw-r--r--recipes-support/libcryptopp/libcryptopp_5.6.2.bb45
1 files changed, 0 insertions, 45 deletions
diff --git a/recipes-support/libcryptopp/libcryptopp_5.6.2.bb b/recipes-support/libcryptopp/libcryptopp_5.6.2.bb
deleted file mode 100644
index ad9e10b..0000000
--- a/recipes-support/libcryptopp/libcryptopp_5.6.2.bb
+++ /dev/null
@@ -1,45 +0,0 @@
-SUMMARY = "A free C++ class library of cryptographic schemes"
-HOMEPAGE = "http://www.cryptopp.com/wiki/Main_Page"
-BUGTRACKER = "http://sourceforge.net/apps/trac/cryptopp/"
-SECTION = "libs"
-
-LICENSE = "PD"
-LIC_FILES_CHKSUM = "file://License.txt;md5=15bb91b85c60bac932e0a3f550bad6a3"
-
-BBCLASSEXTEND = "native nativesdk"
-
-PR = "r1"
-
-PVSHORT = "${@'${PV}'.replace('.','')}"
-SRC_URI = "${SOURCEFORGE_MIRROR}/cryptopp/${PV}/cryptopp${PVSHORT}.zip;subdir=libcryptopp-${PV} \
- file://makefile_fix_destdir.patch \
- "
-SRC_URI[md5sum] = "7ed022585698df48e65ce9218f6c6a67"
-SRC_URI[sha256sum] = "5cbfd2fcb4a6b3aab35902e2e0f3b59d9171fee12b3fc2b363e1801dfec53574"
-
-inherit autotools-brokensep pkgconfig
-
-EXTRA_OECONF = "--libdir=${base_libdir}"
-
-#we want tegrarcm binary to run on a 32-bit architecture, on x86_64 this requires the 32-bit compatibility libs
-EXTRA_OEMAKE_class-native = "CC='${CC} -m32' CXX='${CXX} -m32'"
-
-do_compile() {
- sed -i -e 's/^CXXFLAGS/#CXXFLAGS/' GNUmakefile
- export CXXFLAGS="${CXXFLAGS} -DNDEBUG -fPIC"
- oe_runmake -f GNUmakefile
- oe_runmake libcryptopp.a
-}
-
-do_install_prepend() {
- export PREFIX=${prefix}
-}
-
-do_install_append() {
- if [ -f "${D}/usr/lib/libcryptopp.so" ] && [ ! -e "${D}/usr/lib/libcryptopp.so.${PV}" ]
- then
- mv ${D}/usr/lib/libcryptopp.so ${D}/usr/lib/libcryptopp.so.${PV}
- ln -fs libcryptopp.so.${PV} ${D}/usr/lib/libcryptopp.so.5
- ln -fs libcryptopp.so.${PV} ${D}/usr/lib/libcryptopp.so
- fi
-}