mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
aa5e6ba371
- Fix build with non-root - Bump PORTREVISION PR: 200642 [1] Submitted by: Andrey Fesenko <andrey@bsdnir.info> [1]
26 lines
491 B
Makefile
26 lines
491 B
Makefile
# Created by: Tyler Spivey
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= beep
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= LOCAL/garga/${PORTNAME}
|
|
|
|
MAINTAINER= garga@FreeBSD.org
|
|
COMMENT= Beeps a certain duration and pitch out of the PC Speaker
|
|
|
|
LICENSE= BSD4CLAUSE
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64 pc98
|
|
|
|
PLIST_FILES= bin/beep man/man1/beep.1.gz
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's|machine/speaker\.h|dev/speaker/speaker.h|' \
|
|
${WRKSRC}/beep.c
|
|
|
|
.include <bsd.port.mk>
|