mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
646 B
Bash
21 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
|
|
}
|