summaryrefslogtreecommitdiff
path: root/community/ussp-push/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/ussp-push/PKGBUILD')
-rw-r--r--community/ussp-push/PKGBUILD19
1 files changed, 14 insertions, 5 deletions
diff --git a/community/ussp-push/PKGBUILD b/community/ussp-push/PKGBUILD
index 5a8f1e3a7..1c4fc9c5d 100644
--- a/community/ussp-push/PKGBUILD
+++ b/community/ussp-push/PKGBUILD
@@ -1,25 +1,34 @@
-# $Id: PKGBUILD 65357 2012-02-21 02:19:32Z spupykin $
+# $Id: PKGBUILD 92147 2013-06-01 15:32:36Z eric $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Giovanni Scafora <linuxmania@gmail.com>
# Contributor: Alessio 'mOLOk' Bolognino <themolok@gmail.com>
pkgname=ussp-push
pkgver=0.11
-pkgrel=4
+pkgrel=6
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)
+ build-fix.patch)
md5sums=('5c44983ee27809867041feff6bb4423a'
- '3c58795be3a977a5bf7b267f00dde660')
+ 'b9020ea9bb34b811206366b407f5e3cd')
+
+prepare() {
+ cd $srcdir/$pkgname-$pkgver
+ patch -p1 <$srcdir/build-fix.patch
+}
build() {
cd $srcdir/$pkgname-$pkgver
- patch -p1 <$srcdir/ussp-push-remote-name.patch
+ export LDFLAGS="$LDFLAGS -lopenobex-apps-common"
./configure --prefix=/usr
make
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
}