From: Martin Jansa Date: Tue, 18 Jan 2011 10:17:01 +0000 (+0100) Subject: fso-sounds: add fso-sounds-extras package with all remaining sounds and RSUGGEST it X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62eebc44737ee8a253770503d038be730ce9a3dd;p=openembedded.git fso-sounds: add fso-sounds-extras package with all remaining sounds and RSUGGEST it Signed-off-by: Martin Jansa --- diff --git a/recipes/freesmartphone/fso-sounds.bb b/recipes/freesmartphone/fso-sounds.bb index 1349e3ea11..643c6d0c6b 100644 --- a/recipes/freesmartphone/fso-sounds.bb +++ b/recipes/freesmartphone/fso-sounds.bb @@ -4,17 +4,24 @@ SECTION = "multimedia" SRCREV = "3a4767ec01988bd0fd8f72f0c35d6d36e5fbc815" PV = "0.0.1+gitr${SRCPV}" PE = "1" -PR = "r2" +PR = "r3" SRC_URI = "\ ${FREESMARTPHONE_GIT}/artwork.git;protocol=git;branch=master \ " +S = "${WORKDIR}/git/sounds" do_install() { install -d ${D}${datadir}/sounds/ - install ${WORKDIR}/git/sounds/female_message.wav ${D}${datadir}/sounds/ - install ${WORKDIR}/git/sounds/female_ringtone.wav ${D}${datadir}/sounds/ + cp ${S}/*.wav ${D}${datadir}/sounds/ } -FILES_${PN} = "${datadir}" +PACKAGES += "${PN}-extras" + +RSUGGESTS_${PN} = "${PN}-extras" +FILES_${PN} = "${datadir}/sounds/female_message.wav \ + ${datadir}/sounds/female_ringtone.wav \ +" +FILES_${PN}-extras = "${datadir}/sounds" + PACKAGE_ARCH = "all"