1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00
freebsd-ports/games/homura/Makefile
Tobias C. Berner d809ac6de7 games/homura: Update to 5.3
Changes :
- The Tinkering corner is now available, this allows to copy an existing app installation and tinker with it, without touching the existing installation.
- The installation and uninstallation of application must now be confirmed once again
- It was fixed that you cannot use files with a space in their name in "Run a executable in prefix"

Package changes:
- Removed x11-fonts/webfonts as run dependency
- Source changed to codeberg.org

PR:		252239
Submitted by:	Alexander Vereeken <Alexander88207@protonmail.com> (maintainer)
2021-01-12 17:51:25 +00:00

45 lines
980 B
Makefile

# Created by: Alexander Vereeken <Alexander88207@protonmail.com>
# $FreeBSD$
PORTNAME= homura
PORTVERSION= 5.3
CATEGORIES= games
MASTER_SITES= https://codeberg.org/Alexander88207/Homura/archive/
DISTNAME= ${PORTVERSION}
MAINTAINER= Alexander88207@protonmail.com
COMMENT= Windows Games 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= zenity:x11/zenity \
xdg-open:devel/xdg-utils \
bash:shells/bash \
7z:archivers/p7zip \
winetricks:emulators/winetricks \
vulkaninfo:graphics/vulkan-tools \
glxinfo:graphics/mesa-demos
WRKSRC= ${WRKDIR}/${PORTNAME}
NO_BUILD= yes
PLIST_FILES= bin/Homura
.include <bsd.port.pre.mk>
.if ${ARCH} == "i386"
RUN_DEPENDS+= wine:emulators/wine-devel
.else
RUN_DEPENDS+= wine:emulators/i386-wine-devel
.endif
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/Homura ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.post.mk>