mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
f85594a607
Changes: - Homura now uses wine-proton [1] as default - It's now possible to switch the wine version to wine or wine-devel per application. - It's now possible to chose to kill an entire wineprefix session easily. - The tinkering section have been removed because it was obsolete. [1] https://www.freshports.org/emulators/wine-proton PR: 257831
37 lines
857 B
Makefile
37 lines
857 B
Makefile
# Created by: Alexander Vereeken <Alexander88207@protonmail.com>
|
|
|
|
PORTNAME= homura
|
|
PORTVERSION= 5.5
|
|
CATEGORIES= games
|
|
MASTER_SITES= https://codeberg.org/Alexander88207/Homura/archive/
|
|
DISTNAME= ${PORTVERSION}
|
|
|
|
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
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/Homura ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|