mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
22 lines
668 B
Bash
22 lines
668 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Contributor: Zhukov Pavel <gelios@gmail.com>
|
||
|
|
||
|
pkgname=synce-vdccm
|
||
|
pkgver=0.10.1
|
||
|
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')
|
||
|
source=(http://downloads.sourceforge.net/synce/vdccm-$pkgver.tar.gz)
|
||
|
md5sums=('43bca4c2fdb658f99b07549fa03832e0')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/vdccm-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install || return 1
|
||
|
}
|