diff options
author | plunky <plunky@pkgsrc.org> | 2006-12-07 20:29:10 +0000 |
---|---|---|
committer | plunky <plunky@pkgsrc.org> | 2006-12-07 20:29:10 +0000 |
commit | 2f1001442b5d7cdacb1afd41930b3114fb4fd968 (patch) | |
tree | 5465881f382899e96e8b58e74dcd3b84007ebc24 /comms/bthfp/Makefile | |
parent | 50a36eb952d5e211b306dc29e585d289eee140ab (diff) | |
download | pkgsrc-2f1001442b5d7cdacb1afd41930b3114fb4fd968.tar.gz |
Very basic implementation of the Bluetooth Handsfree Profile for NetBSD.
bthfp opens a control connection to your phone and copies audio data
to and from your system audio as appropriate.
Diffstat (limited to 'comms/bthfp/Makefile')
-rw-r--r-- | comms/bthfp/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/comms/bthfp/Makefile b/comms/bthfp/Makefile new file mode 100644 index 00000000000..4abf4228a28 --- /dev/null +++ b/comms/bthfp/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1.1.1 2006/12/07 20:29:10 plunky Exp $ + +DISTNAME= bthfp-0.1 +CATEGORIES= comms +MASTER_SITES= http://homepages.rya-online.net/plunky/ +DISTFILES= bthfp-0.1.tar.gz + +MAINTAINER= plunky@rya-online.net +COMMENT= Bluetooth Handsfree Profile + +ONLY_FOR_PLATFORM= NetBSD-[4-9].*-* + +BUILD_DEFS+= PKGMANDIR + +INSTALLATION_DIRS= ${PKGMANDIR}/man1 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bthfp ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/bthfp.1 ${PREFIX}/${PKGMANDIR}/man1 + +.include "../../mk/bsd.pkg.mk" |