Add madplay to -extras and create an extras image to include apps in extras

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@502 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2006-07-04 20:20:45 +00:00
parent 81b93eb2ed
commit 5426fb4ebd
5 changed files with 95 additions and 0 deletions

View File

@ -0,0 +1,19 @@
SECTION = "libs"
PRIORITY = "optional"
MAINTAINER = "Greg Gilbert <greg@treke.net>"
DEPENDS = "zlib"
DESCRIPTION = "Library for interacting with ID3 tags."
LICENSE = "GPL"
PR = "r2"
SRC_URI = "ftp://ftp.mars.org/pub/mpeg/libid3tag-${PV}.tar.gz "
S = "${WORKDIR}/libid3tag-${PV}"
inherit autotools
EXTRA_OECONF = "-enable-speed"
do_stage() {
oe_libinstall -so libid3tag ${STAGING_LIBDIR}
install -m 0644 id3tag.h ${STAGING_INCDIR}
}

View File

@ -0,0 +1,26 @@
DESCRIPTION = "MPEG Audio Decoder Library"
SECTION = "libs"
PRIORITY = "optional"
MAINTAINER = "Greg Gilbert <greg@treke.net>"
DEPENDS = "libid3tag"
LICENSE = "GPL"
PR = "r2"
SRC_URI = "ftp://ftp.mars.org/pub/mpeg/libmad-${PV}.tar.gz"
S = "${WORKDIR}/libmad-${PV}"
inherit autotools
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"
do_configure_prepend () {
# damn picky automake...
touch NEWS AUTHORS ChangeLog
}
do_stage() {
oe_libinstall -so libmad ${STAGING_LIBDIR}
install -m 0644 mad.h ${STAGING_INCDIR}
}

View File

@ -0,0 +1,13 @@
DESCRIPTION = "Madplay is a command-line MPEG audio decoder and player"
MAINTAINER = "Maciej Swiniarski <luzik@gda.pl>"
SECTION = "console/multimedia"
DEPENDS = "libmad"
LICENSE = "GPL"
AUTHOR = "Robert Leslie <rob@mars.org>"
HOMEPAGE = "http://www.mars.org/home/rob/proj/mpeg/"
SRC_URI = "ftp://ftp.mars.org/pub/mpeg/${PN}-${PV}.tar.gz"
inherit autotools
FILES_${PN} = "${bindir}/madplay"

View File

@ -0,0 +1,27 @@
PR = "r9"
export IMAGE_BASENAME = "oh-extras"
GUI_MACHINE_CLASS ?= "none"
XSERVER ?= "xserver-kdrive-fbdev"
DEPENDS = "\
task-oh \
task-oh-extras"
RDEPENDS = "\
task-oh-boot \
task-oh-boot-extras \
task-oh-base \
task-oh-standard \
task-oh-testapps \
task-oh-devtools \
task-oh-extraapps \
${XSERVER} "
export IPKG_INSTALL = "${RDEPENDS}"
#ROOTFS_POSTPROCESS_COMMAND += "zap_root_password; "
inherit image_ipk
LICENSE = MIT

View File

@ -0,0 +1,10 @@
PACKAGES = "task-oh-extraapps"
DESCRIPTION = "Extras Tasks for OpenedHand Poky"
MAINTAINER = "Richard Purdie <richard@openedhand.com>"
PR = "r0"
ALLOW_EMPTY = "1"
RDEPENDS_task-oh-extraapps = "\
madplay \
mc"