54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
PORTNAME= radarr
|
|
PORTVERSION= 4.0.4.5922
|
|
CATEGORIES= net-p2p
|
|
MASTER_SITES= https://github.com/Radarr/Radarr/releases/download/v${PORTVERSION}/
|
|
DISTNAME= Radarr.master.${PORTVERSION}.freebsd-core-x64
|
|
|
|
MAINTAINER= michiel@vanbaak.eu
|
|
COMMENT= Movie Library Manager for Usenet and BitTorrent users
|
|
|
|
LICENSE= GPLv3
|
|
|
|
# See https://github.com/Radarr/Radarr/issues/6668 for x86 support
|
|
ONLY_FOR_ARCHS= amd64
|
|
|
|
RUN_DEPENDS= ca_root_nss>0:security/ca_root_nss \
|
|
icu>0:devel/icu \
|
|
libiconv>0:converters/libiconv \
|
|
libinotify>0:devel/libinotify \
|
|
libunwind>0:devel/libunwind \
|
|
openssl>0:security/openssl \
|
|
sqlite3>0:databases/sqlite3
|
|
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
NO_BUILD= YES
|
|
|
|
SUB_FILES= ${PORTNAME} package_info pkg-message
|
|
SUB_LIST= DATADIR=${DATADIR} \
|
|
GROUPS=${GROUPS} \
|
|
MAINTAINER=${MAINTAINER} \
|
|
PKGVERSION=${PKGVERSION} \
|
|
PORTNAME=${PORTNAME} \
|
|
USERS=${USERS}
|
|
|
|
USERS= ${PORTNAME}
|
|
GROUPS= ${PORTNAME}
|
|
|
|
WRKSRC= ${WRKDIR}/Radarr
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-extract:
|
|
${RM} -rf ${WRKSRC}/Radarr.Update
|
|
|
|
do-install:
|
|
${INSTALL} -d -m 755 ${STAGEDIR}/${DATADIR}/bin/
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}/${DATADIR}/bin/ "! -name Radarr -and ! -name ffprobe"
|
|
${INSTALL_PROGRAM} ${WRKSRC}/Radarr ${STAGEDIR}/${DATADIR}/bin/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ffprobe ${STAGEDIR}/${DATADIR}/bin/
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKDIR}/package_info ${STAGEDIR}/${DATADIR}/
|
|
|
|
.include <bsd.port.mk>
|