mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
26 lines
499 B
Makefile
26 lines
499 B
Makefile
# Created by: Tyler Spivey
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= beep
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://freebsd.unixfreunde.de/sources/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Beeps a certain duration and pitch out of the PC Speaker
|
|
|
|
NO_STAGE= yes
|
|
MAN1= beep.1
|
|
MANCOMPRESSED= maybe
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64 pc98
|
|
|
|
PLIST_FILES= bin/beep
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's|machine/speaker\.h|dev/speaker/speaker.h|' \
|
|
${WRKSRC}/beep.c
|
|
|
|
.include <bsd.port.mk>
|