diff options
author | Rod Whitby <rod@whitby.id.au> | 2005-07-01 18:15:49 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-01 18:15:49 +0000 |
commit | 615e7d157f3d9cf1e7af5e2084358b9f61d3daaf (patch) | |
tree | 9d55038c6c38a0e1c6a9d60109219a6adb49f69f /packages/maemo/osso-sounds_0.3-1.bb | |
parent | 1fda5f0233832ffa3c8adff3499b64ab3f7b7248 (diff) | |
parent | 0d7a6ee2b5a0abc79f17012cb9a6378f9fe583c9 (diff) |
propagate from branch 'org.openembedded.nslu2-linux' (head dc8f56a8edee464ea68c6ca92ec8857113d9e468)
to branch 'org.openembedded.dev' (head a10d28cfd37d2402e42c0f2c022ce4d4c65dbb95)
Diffstat (limited to 'packages/maemo/osso-sounds_0.3-1.bb')
-rw-r--r-- | packages/maemo/osso-sounds_0.3-1.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/packages/maemo/osso-sounds_0.3-1.bb b/packages/maemo/osso-sounds_0.3-1.bb new file mode 100644 index 0000000000..588c3139fd --- /dev/null +++ b/packages/maemo/osso-sounds_0.3-1.bb @@ -0,0 +1,31 @@ +PR = "r0" +LICENSE = "GPL" +MAINTAINER = "Florian Boor <florian@kernelconcepts.de>" + +DEPENDS = "audiofile" + +SRC_URI = "http://repository.maemo.org/pool/maemo/ossw/source/o/${PN}/${PN}_${PV}.tar.gz" + +S = ${WORKDIR}/${PN}-0.3 + +datafiles = "game-chess_check.wav ui-charging_started.wav game-chess_checkmate.wav \ + ui-clock_alarm.mp3 game-chess_illegal_move.wav ui-confirmation_note.wav \ + game-chess_piece_capture.wav ui-connection_lost.wav \ + game-chess_successful_movement.wav ui-default_beep.wav \ + game-chess_successful_selection.wav ui-general_warning.wav \ + game-chess_unsuccesful_selection.wav ui-information_note.wav \ + game-mahjong_correct_combination.wav ui-key_press.wav \ + game-mahjong_hint_usage.wav ui-new_email.wav \ + game-mahjong_incorrect_combination.wav ui-operation_ready.wav \ + game-mahjong_incorrect_selection.wav ui-pen_down.wav \ + game-mahjong_shuffle_usage.wav ui-recharge_battery.wav \ + game-mahjong_successful_selection.wav ui-shutdown.wav \ + game-mahjong_undo_usage.wav ui-wake_up_tune.wav \ + ui-battery_low.wav ui-wrong_charger.wav" + +do_install () { + install -d ${D}/${datadir}/sounds + for h in ${datafiles}; do + install -m 0644 ${S}/usr/share/sounds/$h ${D}/${datadir}/sounds/$h + done +} |