blob: ce9fcb5ff5342b80cc30ceef5a7b613c7fa43089 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"name": "bluez",
"description": "Bluetooth protocol stack for Linux",
"kind": "chunk",
"build-system": "autotools",
"configure-commands": [
"autoreconf -ivf",
"./configure --prefix=\"$PREFIX\" --enable-tools --enable-test"
],
"install-commands": [
"make DESTDIR=\"$DESTDIR\" install",
"install -m755 test/simple-agent \"$DESTDIR/usr/bin\"",
"install -m755 test/simple-service \"$DESTDIR/usr/bin\"",
"install -m755 test/monitor-bluetooth \"$DESTDIR/usr/bin\"",
"install -m755 test/list-devices \"$DESTDIR/usr/bin/list-bluetooth-devices\""
]
}
|