mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
21 lines
643 B
Bash
21 lines
643 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-libsynce
|
|
pkgver=0.14
|
|
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')
|
|
source=(http://downloads.sourceforge.net/sourceforge/synce/libsynce-$pkgver.tar.gz)
|
|
md5sums=('275ed88d7b2725d653d322c0e767129a')
|
|
|
|
build() {
|
|
cd $startdir/src/libsynce-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install || return 1
|
|
}
|