diff options
Diffstat (limited to 'community/cdemu-client/PKGBUILD')
-rw-r--r-- | community/cdemu-client/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/community/cdemu-client/PKGBUILD b/community/cdemu-client/PKGBUILD index 278fa33dd..f49a4a6af 100644 --- a/community/cdemu-client/PKGBUILD +++ b/community/cdemu-client/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Charles Lindsay <charles@chaoslizard.org> pkgname=cdemu-client -pkgver=1.4.0 +pkgver=1.5.0 pkgrel=1 pkgdesc="Simple command-line client for controlling cdemu-daemon" arch=('i686' 'x86_64' 'mips64el') @@ -11,11 +11,11 @@ license=('GPL') depends=('python2' 'dbus-python' 'cdemu-daemon') makedepends=('intltool') conflicts=('cdemu') -source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.gz) -md5sums=('ce469f0660dfa4a9306faed00b3e6d6c') +source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2") +md5sums=('11141138f2b91a7100445d9c32b31181') build() { - cd $srcdir/$pkgname-$pkgver + cd "$srcdir/$pkgname-$pkgver" # python2 fix sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' src/cdemu @@ -25,6 +25,6 @@ build() { } package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR=$pkgdir install + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install } |