blob: 0b844ee7d3c923f30922be7e138bf674600290c0 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001SUMMARY = "cdparanoia library"
2DESCRIPTION = "library used to read audio CDs, which is able to perform \
3error corrections, hence the name paranoia."
4HOMEPAGE = "https://www.xiph.org/"
5SECTION = "multimedia"
6
Andrew Geissler9aee5002022-03-30 16:27:02 +00007LICENSE = "LGPL-2.1-only"
Patrick Williamsb48b7b42016-08-17 15:04:38 -05008LIC_FILES_CHKSUM = "file://COPYING-LGPL;md5=d370feaa1c9edcdbd29ca27ea3d2304d"
9
10SRC_URI = "http://downloads.xiph.org/releases/cdparanoia/cdparanoia-III-${PV}.src.tgz \
11 file://0001-Use-DESTDIR-in-install-Makefile-rule.patch \
12 file://0002-interface-remove-C-reserved-keyword.patch \
Patrick Williamsddad1a12017-02-23 20:36:32 -060013 file://0003-Fix-missing-shared-object-LDFLAGS.patch \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050014 file://dont-use-internal-configs.patch \
15 file://out-of-tree-build.patch \
16 file://0001-check-for-null-buffer-before-trying-a-byteswap.patch \
17 file://0002-Fix-printf-format-errors.patch \
18 file://0001-utils-Use-c99-compiler-independent-types.patch \
19 "
Patrick Williamsb48b7b42016-08-17 15:04:38 -050020SRC_URI[md5sum] = "b304bbe8ab63373924a744eac9ebc652"
21SRC_URI[sha256sum] = "005db45ef4ee017f5c32ec124f913a0546e77014266c6a1c50df902a55fe64df"
22
23# Uppercase letters are not allowed in the recipe name, thus the recipe can not be named cdparanoia-III and
24# we need to add the path to the extracted sources explicitely:
25S = "${WORKDIR}/cdparanoia-III-${PV}"
26
27# cdparanoia Makefile can not be used with several threads (because the static library target and the shared
28# library target use object files which are compiled in the same directory, the object files are just removed
29# between the compilation of those two targets)
30PARALLEL_MAKE = ""
31
Brad Bishop6e60e8b2018-02-01 10:27:11 -050032EXTRA_OECONF = "CC='${CC}' CFLAGS='${CFLAGS}'"
33
34inherit autotools