parent
d7571ce1e3
commit
02cdc57eb5
|
@ -911,6 +911,7 @@ Makefile
|
||||||
share/Makefile
|
share/Makefile
|
||||||
share/icons/Makefile
|
share/icons/Makefile
|
||||||
share/misc/Makefile
|
share/misc/Makefile
|
||||||
|
share/sounds/Makefile
|
||||||
src/Makefile
|
src/Makefile
|
||||||
src/common/Makefile
|
src/common/Makefile
|
||||||
src/common/dbus/Makefile
|
src/common/dbus/Makefile
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
if DO_GTK
|
if DO_GTK
|
||||||
SUBDIRS = icons misc
|
SUBDIRS = icons sounds misc
|
||||||
|
else
|
||||||
|
SUBDIRS = sounds
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
sound_DATA = beep.wav
|
||||||
|
sounddir = $(datadir)/sounds/freedesktop/stereo
|
||||||
|
|
||||||
|
UPDATE_SOUND_CACHE = touch -m $(datadir)/sounds/freedesktop || :
|
||||||
|
|
||||||
|
install-data-hook:
|
||||||
|
mv -f $(datadir)/sounds/freedesktop/stereo/beep.wav $(datadir)/sounds/freedesktop/stereo/hexchat_beep.wav
|
||||||
|
$(UPDATE_SOUND_CACHE);
|
||||||
|
|
||||||
|
uninstall-hook:
|
||||||
|
$(UPDATE_SOUND_CACHE);
|
Loading…
Reference in New Issue