mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
d273123cdc
ChangeLog: https://codeberg.org/Alexander88207/Suyimazu/releases/tag/2023.06 * The obsolete Applying a fix menu has been removed. * Thanks to @duckywastaken for ironing out various typos and general grammar issues. * The DXVK version has been set to 1.10.3 (Wine 7.1+ is required for newer versions) * VKD3D is ready to use on application configurations * Downloaded Files and Shader Cache from DXVK, Mesa & VKD3D will now be in the Cache folder of Suyimazu. * Some minor menu improvements. * Some background management will now only run once per application startup. (such as looking for pkg32 updates) PR: 271996 Reported by: Alexander88207@protonmail.com (maintainer)
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
PORTNAME= suyimazu
|
|
DISTVERSION= 2023.06
|
|
CATEGORIES= games emulators
|
|
MASTER_SITES= https://codeberg.org/Alexander88207/Suyimazu/archive/${PORTVERSION}${EXTRACT_SUFX}?dummy=/
|
|
|
|
MAINTAINER= Alexander88207@protonmail.com
|
|
COMMENT= Wine-based Application Launcher for FreeBSD
|
|
WWW= https://codeberg.org/Alexander88207/Suyimazu
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
ONLY_FOR_ARCHS_REASON= Wine only runs on x86 architecture
|
|
|
|
RUN_DEPENDS= 7zz:archivers/7-zip \
|
|
bash:shells/bash \
|
|
vulkaninfo:graphics/vulkan-tools \
|
|
wine:emulators/wine \
|
|
wine-mono>0:emulators/wine-mono \
|
|
winetricks:emulators/winetricks \
|
|
xdg-open:devel/xdg-utils \
|
|
zenity:x11/zenity
|
|
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS_SUB= yes
|
|
OPTIONS_DEFAULT= GLX-UTILS
|
|
OPTIONS_RADIO= GLXINFO
|
|
OPTIONS_RADIO_GLXINFO= GLX-UTILS MESA-DEMOS
|
|
|
|
GLX-UTILS_DESC= Use glxinfo from glx-utils
|
|
MESA-DEMOS_DESC= Use glxinfo from mesa-demos
|
|
|
|
GLX-UTILS_RUN_DEPENDS= glxinfo:graphics/glx-utils
|
|
MESA-DEMOS_RUN_DEPENDS= glxinfo:graphics/mesa-demos
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
PLIST_FILES= bin/Suyimazu \
|
|
share/Suyimazu/Tools/Framework
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/Suyimazu/Tools
|
|
${INSTALL_SCRIPT} ${WRKSRC}/Suyimazu ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/Tools/Framework ${STAGEDIR}${PREFIX}/share/Suyimazu/Tools
|
|
|
|
.include <bsd.port.mk>
|