mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
35 lines
794 B
Makefile
35 lines
794 B
Makefile
# Created by: Kengo Ichiki <kichiki@users.sourceforge.net>
|
|
|
|
PORTNAME= waon
|
|
PORTVERSION= 0.10
|
|
PORTREVISION= 4
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= kichiki@users.sourceforge.net
|
|
COMMENT= Wave-to-Notes transcriber and some utility tools
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libfftw3.so:math/fftw3 \
|
|
libao.so:audio/libao \
|
|
libsndfile.so:audio/libsndfile \
|
|
libsamplerate.so:audio/libsamplerate
|
|
|
|
CONFLICTS= pv-[0-9]*
|
|
|
|
USES= gnome ncurses pkgconfig
|
|
USE_GNOME= gtk20
|
|
|
|
PLIST_FILES= bin/waon bin/pv bin/gwaon \
|
|
share/man/man1/gwaon.1.gz share/man/man1/pv.1.gz \
|
|
share/man/man1/waon.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/waon \
|
|
${WRKSRC}/pv \
|
|
${WRKSRC}/gwaon ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/*.1 ${STAGEDIR}${PREFIX}/share/man/man1
|
|
|
|
.include <bsd.port.mk>
|