mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
27 lines
706 B
Bash
27 lines
706 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Giovanni Scafora <linuxmania@gmail.com>
|
||
|
# Contributor: Alessio 'mOLOk' Bolognino <themolok@gmail.com>
|
||
|
|
||
|
pkgname=ussp-push
|
||
|
pkgver=0.11
|
||
|
pkgrel=2
|
||
|
pkgdesc="OBEX object pusher for Linux"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL2')
|
||
|
url="http://xmailserver.org/ussp-push.html"
|
||
|
depends=('openobex')
|
||
|
source=(http://xmailserver.org/$pkgname-$pkgver.tar.gz
|
||
|
ussp-push-remote-name.patch)
|
||
|
md5sums=('5c44983ee27809867041feff6bb4423a'
|
||
|
'3c58795be3a977a5bf7b267f00dde660')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
|
||
|
patch -p1 <$srcdir/ussp-push-remote-name.patch
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|