diff options
Diffstat (limited to 'cdemu-client')
-rw-r--r-- | cdemu-client/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cdemu-client/PKGBUILD b/cdemu-client/PKGBUILD new file mode 100644 index 0000000..788785b --- /dev/null +++ b/cdemu-client/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: Mateusz Herych <heniekk@gmail.com> +# Contributor: Charles Lindsay <charles@chaoslizard.org> +pkgname=cdemu-client +pkgver=1.1.0 +pkgrel=2 +pkgdesc="Simple command-line client for controlling cdemu-daemon" +arch=('i686' 'x86_64') +url="http://cdemu.sourceforge.net/" +license=('GPL') +depends=('python' 'dbus-python' 'cdemu-daemon') +makedepends=('intltool') +conflicts=('cdemu') +source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2) +md5sums=('f41ce6892d452663fecb147395b916c3') + +build() { + cd $startdir/src/$pkgname-$pkgver + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$startdir/pkg install || return 1 +} |