mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
691a52a4b9
Changes: https://codeberg.org/Alexander88207/Homura/releases/tag/5.6 PR: 258560
40 lines
1021 B
Makefile
40 lines
1021 B
Makefile
# Created by: Alexander Vereeken <Alexander88207@protonmail.com>
|
|
|
|
PORTNAME= homura
|
|
DISTVERSION= 5.6
|
|
CATEGORIES= games
|
|
MASTER_SITES= https://codeberg.org/Alexander88207/Homura/archive/
|
|
DISTNAME= ${DISTVERSION}
|
|
|
|
MAINTAINER= Alexander88207@protonmail.com
|
|
COMMENT= Wine-based Game Launcher for FreeBSD
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
ONLY_FOR_ARCHS_REASON= Wine only runs on x86 architecture
|
|
|
|
RUN_DEPENDS= 7z:archivers/p7zip \
|
|
bash:shells/bash \
|
|
glxinfo:graphics/mesa-demos \
|
|
vulkaninfo:graphics/vulkan-tools \
|
|
wine-proton>0:emulators/wine-proton \
|
|
winetricks:emulators/winetricks \
|
|
xdg-open:devel/xdg-utils \
|
|
zenity:x11/zenity
|
|
|
|
NO_BUILD= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
PLIST_FILES= bin/Homura \
|
|
share/Homura/Data/Framework
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/Homura/Data
|
|
${INSTALL_SCRIPT} ${WRKSRC}/Homura ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/Data/Framework ${STAGEDIR}${PREFIX}/share/Homura/Data
|
|
|
|
.include <bsd.port.mk>
|