blob: 4c0452b8670d3dbfea4959c8ddaacd288bee4796 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Description: Outils bluetooth pour l'environement kde
# URL: http://www.kde-apps.org/content/show.php/kbluetooth?content=112110
# Maintainer: NuTyX packager team
# Packager: lesibel at free dot fr
# Depends on: kdebase-workspace, bluez, obex-data-server, python
# Run on:
name=kbluetooth
version=0.4.2
release=1
source=(http://www.kde-apps.org/CONTENT/content-files/112110-$name-$version.tar.bz2 )
build() {
cd $SRC
mkdir build
cd build
cmake ../$name-$version \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
make
make DESTDIR=$PKG install
}
|