diff options
author | Alan Lacerda <alancordeiro@gmail.com> | 2015-07-03 16:12:47 +0000 |
---|---|---|
committer | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2015-07-04 19:10:18 +0200 |
commit | 8715ec73038358802f1ea921d79c80d77f246ec2 (patch) | |
tree | 9bfd1b2a2d3a66a8ee63ffc31f9e8941480fff88 | |
parent | 23e979efa19c71630509cc5253db588e374d8125 (diff) | |
download | aports-8715ec73038358802f1ea921d79c80d77f246ec2.tar.bz2 aports-8715ec73038358802f1ea921d79c80d77f246ec2.tar.xz |
testing/freeswitch-sounds-pt-br-karina-8000: fixing srcdir path
-rw-r--r-- | testing/freeswitch-sounds-pt-br-karina-8000/APKBUILD | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/testing/freeswitch-sounds-pt-br-karina-8000/APKBUILD b/testing/freeswitch-sounds-pt-br-karina-8000/APKBUILD index ce7a908e75..b05f144f94 100644 --- a/testing/freeswitch-sounds-pt-br-karina-8000/APKBUILD +++ b/testing/freeswitch-sounds-pt-br-karina-8000/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: pkgname=freeswitch-sounds-pt-BR-karina-8000 pkgver=1.0.51 -pkgrel=0 +pkgrel=1 pkgdesc="Sounds for freeswitch Brazilian Portuguese" url="http://files.freeswitch.org/" arch="noarch" @@ -17,19 +17,13 @@ source="http://files.freeswitch.org/releases/sounds/$pkgname-$pkgver.tar.gz" _builddir="$srcdir"/$pkgname-$pkgver _sounds=/usr/share/freeswitch/sounds -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done +build() { + return 0 } package() { mkdir -p "$pkgdir"/$_sounds/ - cp -ra "$srcdir"/en "$pkgdir"/$_sounds + cp -ra "$srcdir"/pt "$pkgdir"/$_sounds chown -R root:root "$pkgdir"/$_sounds } |