Added bluez-4.58 build template!

--HG--
extra : convert_revision : bbe502e2866a946e3e55416167c479b2f02b2645
This commit is contained in:
Juan RP
2009-12-03 00:36:10 +01:00
parent 18f41bd4df
commit 7a925429ed
13 changed files with 243 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# Template file for 'bluez-compat'.
#
short_desc="BlueZ 3.x compatibility binaries"
long_desc="
This package provides the legacy binaries that were reminiscent of
the BlueZ 3.x pairing methods. These binaries are not supported, and
will go away again in the future. The provides binaries are:
hidd dund pand"
Add_dependency run glibc
Add_dependency run libbluetooth
do_install()
{
mkdir -p ${DESTDIR}/usr/bin ${DESTDIR}/usr/share/man/man1
for _bin_ in dund hidd pand; do
mv ${SRCPKGDESTDIR}/usr/bin/${_bin_} ${DESTDIR}/usr/bin
mv ${SRCPKGDESTDIR}/usr/share/man/man1/${_bin_}.1 \
${DESTDIR}/usr/share/man/man1
done
}