mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
22 lines
646 B
Bash
22 lines
646 B
Bash
|
# Maintainer: Mateusz Herych <heniekk@gmail.com>
|
||
|
# Contributor: Charles Lindsay <charles@chaoslizard.org>
|
||
|
pkgname=cdemu-client
|
||
|
pkgver=1.2.0
|
||
|
pkgrel=1
|
||
|
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=('b0ae11c9dc8635db1fe56d41e2c927cb')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install || return 1
|
||
|
}
|