libb64_2.0.0.1.bb 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. SUMMARY = "Base64 Encoding/Decoding Routines"
  2. DESCRIPTION = "base64 encoding/decoding library - runtime library \
  3. libb64 is a library of ANSI C routines for fast encoding/decoding data into \
  4. and from a base64-encoded format"
  5. HOMEPAGE = "https://github.com/libb64"
  6. LICENSE = "PD"
  7. LIC_FILES_CHKSUM = "file://LICENSE.md;md5=81296a564fa0621472714aae7c763d96"
  8. PV .= "+2.0.0.2+git"
  9. SRCREV = "ce864b17ea0e24a91e77c7dd3eb2d1ac4175b3f0"
  10. SRC_URI = "git://github.com/libb64/libb64;protocol=https;branch=master \
  11. file://0001-example-Do-not-run-the-tests.patch \
  12. file://0002-use-BUFSIZ-as-buffer-size.patch \
  13. file://0001-Makefile-fix-parallel-build-of-examples.patch \
  14. file://0001-examples-Use-proper-function-prototype-for-main.patch \
  15. "
  16. S = "${WORKDIR}/git"
  17. CFLAGS += "-fPIC"
  18. do_configure () {
  19. :
  20. }
  21. do_compile () {
  22. oe_runmake
  23. ${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,${BPN}.so.0 src/*.o -o src/${BPN}.so.0
  24. }
  25. do_install () {
  26. install -d ${D}${includedir}/b64
  27. install -Dm 0644 ${B}/src/libb64.a ${D}${libdir}/libb64.a
  28. install -Dm 0644 ${B}/src/libb64.so.0 ${D}${libdir}/libb64.so.0
  29. ln -s libb64.so.0 ${D}${libdir}/libb64.so
  30. install -Dm 0644 ${S}/include/b64/*.h ${D}${includedir}/b64/
  31. }