summaryrefslogtreecommitdiff
path: root/sounds/Makefile
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-06-07 22:37:31 +0000
committerKevin P. Fleming <kpfleming@digium.com>2006-06-07 22:37:31 +0000
commitbc49d5bfb315864ac1f1dd869310f175c0986ccd (patch)
treeb7c9a74b58106459f6aa50ac1833ccb49a8fcb0a /sounds/Makefile
parent05ffacedf108f7cecbcd75bf3beeae0db547dbfb (diff)
moh files will now be distributed in native format, not mp3, so...
update sounds/Makefile to download/unpack the proper files remove all evidence of mpg123 from the main Makefile change the sample musiconhold.conf file to use native mode instead of mp3 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32917 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'sounds/Makefile')
-rw-r--r--sounds/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/sounds/Makefile b/sounds/Makefile
index 6c28e34e0..44ea10bdc 100644
--- a/sounds/Makefile
+++ b/sounds/Makefile
@@ -15,7 +15,7 @@ include ../menuselect.makeopts
PWD:=$(shell pwd)
SOUNDS_DIR:=$(DESTDIR)$(ASTDATADIR)/sounds
-MOH_DIR:=$(DESTDIR)$(ASTDATADIR)/mohmp3
+MOH_DIR:=$(DESTDIR)$(ASTDATADIR)/moh
CORE_SOUNDS_VERSION:=1.4.0
SOUNDS_URL:=http://cork.digium.internal/apache2-default
MENUSELECT_CORE_SOUNDS:=$(subst -EN-,-en-,$(MENUSELECT_CORE_SOUNDS))
@@ -38,7 +38,11 @@ MENUSELECT_EXTRA_SOUNDS:=$(subst -GSM,-gsm,$(MENUSELECT_EXTRA_SOUNDS))
MENUSELECT_EXTRA_SOUNDS:=$(subst -G729,-g729,$(MENUSELECT_EXTRA_SOUNDS))
EXTRA_SOUNDS:=$(MENUSELECT_EXTRA_SOUNDS:EXTRA-SOUNDS-%=asterisk-extra-sounds-%.tar.gz)
MENUSELECT_MOH:=$(subst -FREEPLAY-,-freeplay-,$(MENUSELECT_MOH))
-MENUSELECT_MOH:=$(subst -MP3,-mp3,$(MENUSELECT_MOH))
+MENUSELECT_MOH:=$(subst -WAV,-wav,$(MENUSELECT_MOH))
+MENUSELECT_MOH:=$(subst -ULAW,-ulaw,$(MENUSELECT_MOH))
+MENUSELECT_MOH:=$(subst -ALAW,-alaw,$(MENUSELECT_MOH))
+MENUSELECT_MOH:=$(subst -GSM,-gsm,$(MENUSELECT_MOH))
+MENUSELECT_MOH:=$(subst -G729,-g729,$(MENUSELECT_MOH))
MOH:=$(MENUSELECT_MOH:MOH-%=asterisk-moh-%.tar.gz)
MOH_TAGS:=$(MENUSELECT_MOH:MOH-%=$(MOH_DIR)/.asterisk-moh-%)