blob: b388d0099c4b9b3bcd22c1ce2d1276856369ac5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Implémentation du protocole OBject EXchange (OBEX)
# URL: http://dev.zuckschwerdt.org/openobex/
# Maintainer: tnut at nutyx dot com
# Packager: tnut at nutyx doc com
# Depends on: bluez, libusb-compat
# Run on: bluez,libusb-compat
name=openobex
version=1.5
release=1
source=(http://mirror.ovh.net/gentoo-distfiles/distfiles/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--enable-apps \
--enable-irda \
--enable-bluetooth \
--enable-usb
make
make DESTDIR=$PKG install
}
|