mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
22 lines
608 B
Bash
22 lines
608 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=orange
|
||
|
pkgver=0.4
|
||
|
pkgrel=1
|
||
|
pkgdesc="a helper tool for synce"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://synce.sourceforge.net/"
|
||
|
license=("GPL")
|
||
|
depends=(dynamite synce-libsynce file unshield)
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/synce/liborange-$pkgver.tar.gz)
|
||
|
md5sums=('40e9ac3de389c74a60007f7493e072a5')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/liborange-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|