blob: 7e9aba5dee832b12b93b244144cb9ec39e7848d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $Id: PKGBUILD 43060 2011-03-23 21:47:47Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Zhukov Pavel <gelios@gmail.com>
pkgname=synce-libsynce
pkgver=0.15.1
pkgrel=1
pkgdesc="provide a means of communication with a Windows CE device - libraries"
arch=('i686' 'x86_64')
url="http://synce.sourceforge.net/"
license=('GPL')
depends=('glibc' 'hal')
source=(http://downloads.sourceforge.net/sourceforge/synce/libsynce-$pkgver.tar.gz)
md5sums=('eaddc88c5f0027e89c6f0fffec34def2')
build() {
cd $srcdir/libsynce-$pkgver
./configure --prefix=/usr
make
make DESTDIR=$pkgdir install
}
|