mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
24 lines
842 B
Bash
24 lines
842 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: SmackleFunky <smacklefunky@optusnet.com.au>
|
|
|
|
pkgname=synce-odccm
|
|
pkgver=0.13
|
|
pkgrel=1
|
|
pkgdesc="provide a means of communication with a Windows CE device - daemon to communicate with a handheld device"
|
|
arch=('i686' 'x86_64')
|
|
url="http://synce.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('synce-libsynce' 'gnet' 'hal')
|
|
backup=(etc/dbus/system.d/odccm.conf)
|
|
source=(http://downloads.sourceforge.net/synce/odccm-$pkgver.tar.gz)
|
|
md5sums=('8f12585398f1a79518887d5f94cf122d')
|
|
|
|
build() {
|
|
cd $startdir/src/odccm-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install || return 1
|
|
|
|
install -D -m 644 ${startdir}/src/odccm-$pkgver/src/odccm.conf ${startdir}/pkg/etc/dbus-1/system.d/odccm.conf
|
|
}
|