Commit 594610a3 authored by Simon Dawson's avatar Simon Dawson Committed by Thomas Petazzoni
Browse files

sound-theme-borealis: new package



[thomas.petazzoni@free-electrons.com:
  slightly adjust the installation process to just do a loop of calls
  to $(INSTALL).]

Signed-off-by: default avatarSimon Dawson <spdawson@gmail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 45166f30
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -499,6 +499,7 @@ source "package/collectd/Config.in"
source "package/empty/Config.in"
source "package/mobile-broadband-provider-info/Config.in"
source "package/shared-mime-info/Config.in"
source "package/sound-theme-borealis/Config.in"
source "package/sound-theme-freedesktop/Config.in"
endmenu

+6 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_SOUND_THEME_BOREALIS
	bool "sound-theme-borealis"
	help
	  Borealis sound theme.

	  http://kde-look.org/content/show.php?content=12584
+21 −0
Original line number Diff line number Diff line
#############################################################
#
# sound-theme-borealis
#
#############################################################
SOUND_THEME_BOREALIS_VERSION = 0.9a
SOUND_THEME_BOREALIS_SITE = http://ico.bukvic.net/Linux/Borealis_soundtheme
SOUND_THEME_BOREALIS_SOURCE = \
	Borealis_sound_theme_ogg-$(SOUND_THEME_BOREALIS_VERSION).tar.bz2

define SOUND_THEME_BOREALIS_INSTALL_TARGET_CMDS
	for f in $(@D)/*.ogg ; do \
		$(INSTALL) -D -m 0644 $$f $(TARGET_DIR)/usr/share/sounds/borealis/stereo/`basename $$f` ; \
	done
endef

define SOUND_THEME_BOREALIS_UNINSTALL_TARGET_CMDS
	$(RM) -r $(TARGET_DIR)/usr/share/sounds/borealis
endef

$(eval $(generic-package))