diff options
author | root <root@rshg054.dnsready.net> | 2013-10-27 01:06:08 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-10-27 01:06:08 -0700 |
commit | 2886140ddb1db32f36cb0b27e93888442a603a53 (patch) | |
tree | 2a85cef112f53e98d1b959951dc7004b9bc89dc9 /community/opusfile | |
parent | 24152c3ea77087edccf017c13d44904a75799ff7 (diff) |
Sun Oct 27 01:05:45 PDT 2013
Diffstat (limited to 'community/opusfile')
-rw-r--r-- | community/opusfile/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/community/opusfile/PKGBUILD b/community/opusfile/PKGBUILD index d7a625073..00afd1442 100644 --- a/community/opusfile/PKGBUILD +++ b/community/opusfile/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 81936 2013-01-03 21:13:51Z bpiotrowski $ +# $Id: PKGBUILD 99261 2013-10-26 14:32:18Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: DrZaius <lou[at]fakeoutdoorsman[dot]com> pkgname=opusfile pkgver=0.2 -pkgrel=2 +pkgrel=3 pkgdesc='Library for opening, seeking, and decoding .opus files' arch=('i686' 'x86_64') url='http://www.opus-codec.org/' @@ -15,14 +15,14 @@ source=(http://downloads.xiph.org/releases/opus/${pkgname}-${pkgver}.tar.gz) md5sums=('454375f51fb2f84bef9bf2fbf9535bb1') build() { - cd $srcdir/$pkgname-$pkgver + cd $pkgname-$pkgver ./configure --prefix=/usr make } package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR=$pkgdir install + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install - install -Dm644 COPYING $pkgdir/usr/share/licenses/opusfile/LICENSE + install -Dm644 COPYING "$pkgdir"/usr/share/licenses/opusfile/LICENSE } |