Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 1 | SUMMARY = "cdparanoia library" |
| 2 | DESCRIPTION = "library used to read audio CDs, which is able to perform \ |
| 3 | error corrections, hence the name paranoia." |
| 4 | HOMEPAGE = "https://www.xiph.org/" |
| 5 | SECTION = "multimedia" |
| 6 | |
| 7 | LICENSE = "LGPLv2.1" |
| 8 | LIC_FILES_CHKSUM = "file://COPYING-LGPL;md5=d370feaa1c9edcdbd29ca27ea3d2304d" |
| 9 | |
| 10 | SRC_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 Williams | ddad1a1 | 2017-02-23 20:36:32 -0600 | [diff] [blame] | 13 | file://0003-Fix-missing-shared-object-LDFLAGS.patch \ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 14 | 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 Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 20 | SRC_URI[md5sum] = "b304bbe8ab63373924a744eac9ebc652" |
| 21 | SRC_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: |
| 25 | S = "${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) |
| 30 | PARALLEL_MAKE = "" |
| 31 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 32 | EXTRA_OECONF = "CC='${CC}' CFLAGS='${CFLAGS}'" |
| 33 | |
| 34 | inherit autotools |