mirror of
https://git.yoctoproject.org/poky
synced 2026-09-24 22:36:21 +02:00
As discussed on the mailing list, this variable isn't useful and if wanted would be better implemented by distros using pn-X overrides. This patch executes: find . -regex ".*\.\(bb\|inc\)$" | xargs sed -i '/^PRIORITY = ".*"$/d' against the tree removing the referenced. Thanks to Phil Blundell for the command. (From OE-Core rev: d122343362669c683acc4af295971a62cbc823fc) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1020 B
BlitzBasic
32 lines
1020 B
BlitzBasic
DESCRIPTION = "MPEG Audio Decoder Library"
|
|
HOMEPAGE = "http://sourceforge.net/projects/mad/"
|
|
BUGTRACKER = "http://sourceforge.net/tracker/?group_id=12349&atid=112349"
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
|
|
file://COPYRIGHT;md5=8e55eb14894e782b84488d5a239bc23d \
|
|
file://version.h;beginline=1;endline=8;md5=aa07311dd39288d4349f28e1de516454"
|
|
SECTION = "libs"
|
|
DEPENDS = "libid3tag"
|
|
PR = "r2"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/mad/libmad-${PV}.tar.gz \
|
|
file://no-force-mem.patch \
|
|
file://add-pkgconfig.patch \
|
|
file://fix_for_mips_with_gcc-4.5.0.patch"
|
|
|
|
S = "${WORKDIR}/libmad-${PV}"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF = "-enable-speed --enable-shared"
|
|
# The ASO's don't take any account of thumb...
|
|
EXTRA_OECONF_append_thumb = " --disable-aso --enable-fpm=default"
|
|
EXTRA_OECONF_append_arm = " --enable-fpm=arm"
|
|
|
|
do_configure_prepend () {
|
|
# damn picky automake...
|
|
touch NEWS AUTHORS ChangeLog
|
|
}
|
|
|
|
ARM_INSTRUCTION_SET = "arm"
|