diff options
Diffstat (limited to 'extra/openobex/PKGBUILD')
-rw-r--r-- | extra/openobex/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/extra/openobex/PKGBUILD b/extra/openobex/PKGBUILD new file mode 100644 index 000000000..3c3363c0a --- /dev/null +++ b/extra/openobex/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 101376 2010-11-29 00:43:34Z andrea $ +# Maintainer: Geoffroy Carrier <geoffroy@archlinux.org> +# Contributor: Andrea Scarpino <andrea@archlinux.org> +# Contributor: damir <damir@archlinux.org> + +pkgname=openobex +pkgver=1.5 +pkgrel=2 +pkgdesc="Implementation of the OBject EXchange (OBEX) protocol" +url="http://dev.zuckschwerdt.org/openobex/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL') +depends=('bluez' 'libusb-compat') +options=('!libtool') +source=("http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2") +md5sums=('fce1b82eafb74bde54fe117372393ba8') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + [ "${CARCH}" = "x86_64" ] && export CFLAGS="${CFLAGS} -fPIC" + + ./configure --prefix=/usr \ + --enable-apps \ + --enable-irda \ + --enable-bluetooth \ + --enable-usb + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |