diff options
author | root <root@rshg054.dnsready.net> | 2012-02-27 23:15:24 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-02-27 23:15:24 +0000 |
commit | 1f567a9d58d16b76320168f0624aa55bd6320284 (patch) | |
tree | e4e7ffadc364d582fccd8543ad1543fa9741a8a7 /community/cdemu-client | |
parent | f6a79a3f5989efc8db63af942851c56f0c462bb1 (diff) |
Mon Feb 27 23:15:24 UTC 2012
Diffstat (limited to 'community/cdemu-client')
-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 25cfe59f7..279ca938c 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') @@ -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 } |