diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-02 06:58:55 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-02 07:28:56 +0000 |
commit | b16ee9e97eef70e177be91dfd59c417dbeb01022 (patch) | |
tree | 71db8fdeaf1f5e09f98cd8943dcf2f473a46476d | |
parent | 347a7dddc6a5e08a418c41c95ac1ed48f5d3dfce (diff) | |
download | aports-b16ee9e97eef70e177be91dfd59c417dbeb01022.tar.bz2 aports-b16ee9e97eef70e177be91dfd59c417dbeb01022.tar.xz |
main/freeswitch-sounds-es-mx-maria-44100: move sounds to /usr/share (ref #1395)
-rw-r--r-- | main/freeswitch-sounds-es-mx-maria-44100/APKBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/main/freeswitch-sounds-es-mx-maria-44100/APKBUILD b/main/freeswitch-sounds-es-mx-maria-44100/APKBUILD index 5474fb0461..92ff313e7c 100644 --- a/main/freeswitch-sounds-es-mx-maria-44100/APKBUILD +++ b/main/freeswitch-sounds-es-mx-maria-44100/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=freeswitch-sounds-es-mx-maria-44100 pkgver="0" -pkgrel=1 +pkgrel=2 pkgdesc="Sounds for freeswitch Spanish" url="http://files.freeswitch.org/" arch="noarch" @@ -14,14 +14,15 @@ subpackages= source="http://files.freeswitch.org/freeswitch-sounds-es-mx-maria-44100.tar.gz" _builddir="$srcdir"/$pkgname-$pkgver +_sounds=/usr/share/freeswitch/sounds build() { return 0 } package() { - mkdir -p "$pkgdir"/usr/sounds/ - cp -ra "$srcdir"/es/ "$pkgdir"/usr/sounds + mkdir -p "$pkgdir"/$_sounds/ + cp -ra "$srcdir"/es/ "$pkgdir"/$_sounds } md5sums="a83a2e994741e4085016873d2d1c69a4 freeswitch-sounds-es-mx-maria-44100.tar.gz" |