summaryrefslogtreecommitdiff
path: root/recipes-support/libcryptopp/libcryptopp_5.6.3.bb
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2017-03-06 08:25:54 +0100
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2017-06-30 21:43:57 +0200
commit0dcd3213ce45ffe7c461922d38f60246d882f058 (patch)
treebf05c619d5887ef073f5e3f777133e94078d9837 /recipes-support/libcryptopp/libcryptopp_5.6.3.bb
parent081c48a19c473ad9b55e3efc8b4923714ed24cf4 (diff)
libcryptopp: update to 5.6.4
- License has changed - For target builds a versioned shared object is now created Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Diffstat (limited to 'recipes-support/libcryptopp/libcryptopp_5.6.3.bb')
-rw-r--r--recipes-support/libcryptopp/libcryptopp_5.6.3.bb50
1 files changed, 0 insertions, 50 deletions
diff --git a/recipes-support/libcryptopp/libcryptopp_5.6.3.bb b/recipes-support/libcryptopp/libcryptopp_5.6.3.bb
deleted file mode 100644
index 9b7b67e..0000000
--- a/recipes-support/libcryptopp/libcryptopp_5.6.3.bb
+++ /dev/null
@@ -1,50 +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=48e7e415ea7fcc35278d8e7dc8e70b5d"
-
-BBCLASSEXTEND = "native nativesdk"
-
-PR = "r1"
-
-PVSHORT = "${@'${PV}'.replace('.','')}"
-SRC_URI = " \
- https://sourceforge.net/projects/cryptopp/files/cryptopp/5.6.3/cryptopp563.zip;subdir=libcryptopp-${PV} \
- file://0001-Fix-cross-compilation.patch \
-"
-SRC_URI[md5sum] = "3c5b70e2ec98b7a24988734446242d07"
-SRC_URI[sha256sum] = "9390670a14170dd0f48a6b6b06f74269ef4b056d4718a1a329f6f6069dc957c9"
-
-inherit autotools-brokensep pkgconfig
-
-PACKAGES_prepend = "${PN}-test "
-
-EXTRA_OECONF = "--libdir=${base_libdir}"
-TARGET_CC_ARCH += "${LDFLAGS}"
-
-#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 all libcryptopp.so
-}
-
-do_install_prepend() {
- export PREFIX=${D}${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
-}
-
-FILES_${PN}-test = "${bindir}"