diff options
Diffstat (limited to 'community/obexfs/PKGBUILD')
-rw-r--r-- | community/obexfs/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/obexfs/PKGBUILD b/community/obexfs/PKGBUILD new file mode 100644 index 000000000..3e1d404a1 --- /dev/null +++ b/community/obexfs/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 20975 2010-07-13 09:53:35Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Packager: cs-cam - me.at.camdaniel.com + +pkgname=obexfs +pkgver=0.12 +pkgrel=2 +pkgdesc="FUSE based filesystem using ObexFTP (currently beta)." +arch=('i686' 'x86_64') +url="http://openobex.triq.net/obexfs" +license=('GPL') +source=(http://triq.net/obexftp/$pkgname-$pkgver.tar.gz) +depends=('fuse' 'obexftp>=0.22') +md5sums=('0f505672b025cdb505e215ee707a2e2f') + +build() { + cd $srcdir/$pkgname-$pkgver + + export OBEXFTP_CFLAGS="-I/usr/include/obexftp -I/usr/include/multicobex -I/usr/include/bfb" + export OBEXFTP_LIBS="-lobexftp -lmulticobex -lbfb -lopenobex -lbluetooth" + + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$pkgdir install || return 1 +} |