mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= acoustid-fingerprinter
|
|
PORTVERSION= 0.6
|
|
PORTREVISION= 2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://bitbucket.org/acoustid/${PORTNAME}/downloads/ \
|
|
http://cloud.github.com/downloads/lalinsky/${PORTNAME}/
|
|
|
|
MAINTAINER= jhale@FreeBSD.org
|
|
COMMENT= AcoustID audio fingerprint submission tool
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libchromaprint.so:${PORTSDIR}/audio/chromaprint \
|
|
libtag.so:${PORTSDIR}/audio/taglib \
|
|
libavcodec.so:${PORTSDIR}/multimedia/ffmpeg
|
|
|
|
USES= cmake
|
|
USE_QT4= gui network \
|
|
qmake_build moc_build rcc_build uic_build
|
|
INSTALLS_ICONS= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
|
|
${WRKSRC}/cmake/modules/*.cmake
|
|
@${REINPLACE_CMD} -e 's,CodecID,AVCodecID,g' \
|
|
${WRKSRC}/ffmpeg/audioconvert.h
|
|
|
|
post-install:
|
|
.for i in 16 24 32 48 128 256
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}x${i}/apps
|
|
${INSTALL_DATA} ${WRKSRC}/images/acoustid-fp-${i}.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}x${i}/apps/acoustid-fingerprinter.png
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps
|
|
${INSTALL_DATA} ${WRKSRC}/images/acoustid-fingerprinter.svg ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps
|
|
|
|
.include <bsd.port.mk>
|