diff options
author | Alan Mizrahi <alan+crux@mizrahi.com.ve> | 2014-04-23 21:43:04 +0900 |
---|---|---|
committer | Alan Mizrahi <alan+crux@mizrahi.com.ve> | 2014-04-23 21:43:04 +0900 |
commit | 49f01b38ceac33427f227c40594e58b18e308f22 (patch) | |
tree | 171fcf459d331e95b21d214dfcebf4df65c09557 /bluez | |
parent | c16cb613a0adfdc4e9119f8ebb97436df1d6c1f5 (diff) | |
download | opt-49f01b38ceac33427f227c40594e58b18e308f22.tar.gz opt-49f01b38ceac33427f227c40594e58b18e308f22.tar.xz |
bluez: Removed duplicated utility programs
Diffstat (limited to 'bluez')
-rw-r--r-- | bluez/.footprint | 12 | ||||
-rw-r--r-- | bluez/Pkgfile | 4 |
2 files changed, 2 insertions, 14 deletions
diff --git a/bluez/.footprint b/bluez/.footprint index 088ae96d3..6f6a58624 100644 --- a/bluez/.footprint +++ b/bluez/.footprint @@ -18,23 +18,17 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/bluez-avctrl -rwxr-xr-x root/root usr/bin/bluez-avinfo -rwxr-xr-x root/root usr/bin/bluez-bccmd --rwxr-xr-x root/root usr/bin/bluez-ciptool -rwxr-xr-x root/root usr/bin/bluez-dfubabel --rwxr-xr-x root/root usr/bin/bluez-dfutool -rwxr-xr-x root/root usr/bin/bluez-hciattach -rwxr-xr-x root/root usr/bin/bluez-hciconfig -rwxr-xr-x root/root usr/bin/bluez-hcieventmask -rwxr-xr-x root/root usr/bin/bluez-hcisecfilter --rwxr-xr-x root/root usr/bin/bluez-hcitool -rwxr-xr-x root/root usr/bin/bluez-hid2hci -rwxr-xr-x root/root usr/bin/bluez-hsmicro -rwxr-xr-x root/root usr/bin/bluez-hsplay --rwxr-xr-x root/root usr/bin/bluez-l2ping -rwxr-xr-x root/root usr/bin/bluez-list-devices -rwxr-xr-x root/root usr/bin/bluez-monitor-bluetooth -rwxr-xr-x root/root usr/bin/bluez-ppporc --rwxr-xr-x root/root usr/bin/bluez-rfcomm --rwxr-xr-x root/root usr/bin/bluez-sdptool -rwxr-xr-x root/root usr/bin/bluez-simple-agent -rwxr-xr-x root/root usr/bin/bluez-simple-endpoint -rwxr-xr-x root/root usr/bin/bluez-simple-player @@ -110,12 +104,7 @@ drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/bluez.pc drwxr-xr-x root/root usr/man/ drwxr-xr-x root/root usr/man/man1/ --rw-r--r-- root/root usr/man/man1/bluez-ciptool.1.gz -rw-r--r-- root/root usr/man/man1/bluez-dfubabel.1.gz --rw-r--r-- root/root usr/man/man1/bluez-dfutool.1.gz --rw-r--r-- root/root usr/man/man1/bluez-hcitool.1.gz --rw-r--r-- root/root usr/man/man1/bluez-rfcomm.1.gz --rw-r--r-- root/root usr/man/man1/bluez-sdptool.1.gz -rw-r--r-- root/root usr/man/man1/ciptool.1.gz -rw-r--r-- root/root usr/man/man1/dfutool.1.gz -rw-r--r-- root/root usr/man/man1/dund.1.gz @@ -132,7 +121,6 @@ drwxr-xr-x root/root usr/man/man8/ -rw-r--r-- root/root usr/man/man8/bluez-hciattach.8.gz -rw-r--r-- root/root usr/man/man8/bluez-hciconfig.8.gz -rw-r--r-- root/root usr/man/man8/bluez-hid2hci.8.gz --rw-r--r-- root/root usr/man/man8/bluez-l2ping.8.gz -rw-r--r-- root/root usr/man/man8/hciattach.8.gz -rw-r--r-- root/root usr/man/man8/hciconfig.8.gz -rw-r--r-- root/root usr/man/man8/hid2hci.8.gz diff --git a/bluez/Pkgfile b/bluez/Pkgfile index 281d73e71..cf336e77b 100644 --- a/bluez/Pkgfile +++ b/bluez/Pkgfile @@ -6,7 +6,7 @@ name=bluez version=4.101 -release=1 +release=2 source=(http://www.kernel.org/pub/linux/bluetooth/bluez-$version.tar.xz bluetoothd) build() { @@ -38,7 +38,7 @@ build() { # install all available tools and test programs with man pages shopt -s nullglob for i in test/* tools/*; do - if [ -x $i ]; then + if [ -x $i -a ! -d $i -a ! -x $PKG/usr/bin/${i##*/} ]; then install -D -m 755 $i $PKG/usr/bin/bluez-${i#*/} for j in $i.[1-8]; do install -D -m 644 $j $PKG/usr/man/man${j##*.}/bluez-${j##*/} |