Advertisement
Guest User

biloky

a guest
Feb 15th, 2009
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. # Maintainer: Geoffroy Carrier <geoffroy@archlinux.org>
  2. # Contributor: damir <damir@archlinux.org>
  3.  
  4. pkgname=openobex
  5. pkgver=1.3
  6. pkgrel=3.5
  7. pkgdesc="Implementation of the OBject EXchange (OBEX) protocol"
  8. url="http://dev.zuckschwerdt.org/openobex/"
  9. arch=('i686' 'x86_64')
  10. license=('GPL' 'LGPL')
  11. depends=('bluez>=4.18')
  12. source=("http://www.kernel.org/pub/linux/bluetooth/$pkgname-$pkgver.tar.bz2")
  13.  
  14. build() {
  15. cd "$srcdir/$pkgname-$pkgver"
  16.  
  17. [ "${CARCH}" = "x86_64" ] && export CFLAGS="${CFLAGS} -fPIC"
  18.  
  19. ./configure --prefix=/usr \
  20. --enable-apps \
  21. --enable-irda \
  22. --enable-bluetooth \
  23. --enable-usb || return 1
  24. make || return 1
  25. make DESTDIR="$pkgdir" install || return 1
  26. }
  27.  
  28. md5sums=('3e47c6f18eb677063123bc00d177e01a')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement