diff options
Diffstat (limited to 'community/ussp-push/PKGBUILD')
-rw-r--r-- | community/ussp-push/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/ussp-push/PKGBUILD b/community/ussp-push/PKGBUILD new file mode 100644 index 000000000..673cb4718 --- /dev/null +++ b/community/ussp-push/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 21981 2010-07-19 13:46:02Z spupykin $ +# 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=3 +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 $srcdir/$pkgname-$pkgver + + patch -p1 <$srcdir/ussp-push-remote-name.patch + + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$pkgdir install +} |