1b53bac478
- application translated to English and Italian languages - completely rewritten configuration subsystem - code separated into two subprojects: libqnapi and gui - selecting target format/extension from command line interface - #65 - fixed problem with color information loss during subtitles conversion - #100 - Linux x86_64 AppImage binary available
37 lines
881 B
Makefile
37 lines
881 B
Makefile
# Created by: Pawel Pekala <c0rn@o2.pl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qnapi
|
|
PORTVERSION= 0.2.3
|
|
CATEGORIES= polish multimedia
|
|
|
|
MAINTAINER= pawel@FreeBSD.org
|
|
COMMENT= Qt5 based subtitle downloader
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/doc/LICENSE
|
|
|
|
BUILD_DEPENDS= qt-maybe>0:devel/qt-maybe \
|
|
libmaia>0:net/libmaia
|
|
LIB_DEPENDS= libmediainfo.so:multimedia/libmediainfo \
|
|
libzen.so:multimedia/libzen
|
|
RUN_DEPENDS= 7z:archivers/p7zip
|
|
|
|
USE_GITHUB= yes
|
|
|
|
USES= compiler:c++11-lib pkgconfig qmake
|
|
USE_GL= gl
|
|
USE_QT5= buildtools_build core gui network widgets xml
|
|
|
|
CXXFLAGS+= -I${LOCALBASE}/include/maia
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's|/usr|${PREFIX}|; s|share/man|man|' \
|
|
${WRKSRC}/qnapi.pro
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/qnapi
|
|
(cd ${WRKSRC}/doc && ${INSTALL_DATA} qnapi-download.desktop \
|
|
qnapi-scan.desktop ${STAGEDIR}${DESKTOPDIR})
|
|
|
|
.include <bsd.port.mk>
|