diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2010-06-26 14:37:48 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-06-30 13:14:28 +0100 |
commit | 6dc309fbed6dfd8c4bd101e0341fbe4aa1007c00 (patch) | |
tree | 57aa124e15705859c3b57e103f6e4ae2f0d71eb3 | |
parent | eda72fba0f6aaea7c9de1f23693c3322970f6e5b (diff) | |
download | poky-6dc309fbed6dfd8c4bd101e0341fbe4aa1007c00.tar.gz |
flac_1.2.1.bb: Fix recipe metadata
Fix DESCRIPTION and LICENSE information
Add HOMEPAGE, BUGTRACKER, and LIC_FILES_CHKSUM
Change the local file directory name to ${PN}-${PV}
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
-rw-r--r-- | meta/packages/flac/flac_1.2.1.bb | 34 |
1 files changed, 22 insertions, 12 deletions
diff --git a/meta/packages/flac/flac_1.2.1.bb b/meta/packages/flac/flac_1.2.1.bb index 8459201ee7..30a8cfb933 100644 --- a/meta/packages/flac/flac_1.2.1.bb +++ b/meta/packages/flac/flac_1.2.1.bb | |||
@@ -1,25 +1,36 @@ | |||
1 | DESCRIPTION = "FLAC is a Free Lossless Audio Codec." | 1 | DESCRIPTION = "FLAC stands for Free Lossless Audio Codec, an audio format similar to MP3, but lossless." |
2 | LICENSE = "BSD GPL" | 2 | HOMEPAGE = "http://flac.sourceforge.net/" |
3 | BUGTRACKER = "http://sourceforge.net/tracker/?group_id=13478&atid=113478" | ||
3 | SECTION = "libs" | 4 | SECTION = "libs" |
5 | LICENSE = "FDLv1.2 & GPLv2+ & LGPLv2.1+ & BSD" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING.FDL;md5=ad1419ecc56e060eccf8184a87c4285f \ | ||
7 | file://src/Makefile.am;beginline=1;endline=16;md5=8dee151a56a3122f064a9dce771db37d \ | ||
8 | file://COPYING.GPL;md5=079b27cd65c86dbc1b6997ffde902735 \ | ||
9 | file://src/flac/main.c;beginline=1;endline=17;md5=756c4234516e4266ea45ee7bbbd798cf \ | ||
10 | file://COPYING.LGPL;md5=fbc093901857fcd118f065f900982c24 \ | ||
11 | file://src/plugin_common/all.h;beginline=1;endline=17;md5=b2e7960da6b43e4eccabf999bcf7f3a9 \ | ||
12 | file://COPYING.Xiph;md5=df8975c0225f83ed7b567587ed953b83 \ | ||
13 | file://include/FLAC/all.h;beginline=64;endline=69;md5=64474f2b22e9e77b28d8b8b25c983a48" | ||
4 | DEPENDS = "libogg" | 14 | DEPENDS = "libogg" |
15 | |||
5 | PR = "r0" | 16 | PR = "r0" |
6 | 17 | ||
7 | SRC_URI = "${SOURCEFORGE_MIRROR}/flac/flac-${PV}.tar.gz \ | 18 | SRC_URI = "${SOURCEFORGE_MIRROR}/flac/flac-${PV}.tar.gz \ |
8 | file://disable-xmms-plugin.patch;patch=1 \ | 19 | file://disable-xmms-plugin.patch;patch=1 \ |
9 | file://flac-gcc43-fixes.patch;patch=1 \ | 20 | file://flac-gcc43-fixes.patch;patch=1 \ |
10 | file://xmms.m4" | 21 | file://xmms.m4" |
11 | 22 | ||
12 | S = "${WORKDIR}/flac-${PV}" | 23 | S = "${WORKDIR}/flac-${PV}" |
13 | 24 | ||
14 | inherit autotools | 25 | inherit autotools |
15 | 26 | ||
16 | EXTRA_OECONF = "--disable-oggtest --disable-id3libtest \ | 27 | EXTRA_OECONF = "--disable-oggtest --disable-id3libtest \ |
17 | --with-ogg-libraries=${STAGING_LIBDIR} \ | 28 | --with-ogg-libraries=${STAGING_LIBDIR} \ |
18 | --with-ogg-includes=${STAGING_INCDIR} \ | 29 | --with-ogg-includes=${STAGING_INCDIR} \ |
19 | --without-xmms-prefix \ | 30 | --without-xmms-prefix \ |
20 | --without-xmms-exec-prefix \ | 31 | --without-xmms-exec-prefix \ |
21 | --without-libiconv-prefix \ | 32 | --without-libiconv-prefix \ |
22 | --without-id3lib" | 33 | --without-id3lib" |
23 | 34 | ||
24 | PACKAGES += "libflac libflac++ liboggflac liboggflac++" | 35 | PACKAGES += "libflac libflac++ liboggflac liboggflac++" |
25 | FILES_${PN} = "${bindir}/*" | 36 | FILES_${PN} = "${bindir}/*" |
@@ -36,4 +47,3 @@ do_configure () { | |||
36 | # It makes the build fail, other archs are not affected. Fixes #1775. | 47 | # It makes the build fail, other archs are not affected. Fixes #1775. |
37 | sed -i 's/-Wl,-read_only_relocs,warning//g' src/libFLAC/Makefile | 48 | sed -i 's/-Wl,-read_only_relocs,warning//g' src/libFLAC/Makefile |
38 | } | 49 | } |
39 | |||