mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-07-12 18:19:42 -07:00
272217362d
- Bump Mesa version from 26.0.3 to 26.0.5 with updated SHA256 checksum. - Modify RK3326 device tree to increase regulator max voltage for ARM. - Update OPP settings in RK3326 DTS patch for improved performance. - Add Python3 and xz to PortMaster dependencies. - Enhance PortMaster startup script for better directory handling and cleanup. - Implement HDMI resolution check with timeout in autostart script. - Add turbo mode configuration to system settings. - Refactor CPU frequency functions to utilize available frequencies more effectively. - Update Dolphin emulator scripts to improve gptokeyb process handling. - Introduce new systemd configuration for timesyncd to optimize polling intervals. - Set uinput permissions in udev rules for better controller input handling. - Adjust emulator package.mk to optimize performance for RK3326. - Modify mkimage script to ensure proper FAT32 formatting and filesystem checks. - Enhance benchmark script to auto-detect device-specific paths and improve logging.
32 lines
1.2 KiB
Makefile
32 lines
1.2 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2024-present ArchR (https://github.com/archr-linux/Arch-R)
|
|
|
|
PKG_NAME="portmaster"
|
|
PKG_VERSION="2026.04.01-1426"
|
|
PKG_ARCH="arm aarch64"
|
|
PKG_LICENSE="MIT"
|
|
PKG_SITE="https://github.com/PortsMaster/PortMaster-GUI"
|
|
PKG_URL="https://github.com/PortsMaster/PortMaster-GUI/releases/download/${PKG_VERSION}/PortMaster.zip"
|
|
PKG_DEPENDS_TARGET="toolchain archr-hotkey gamecontrollerdb oga_controls control-gen xmlstarlet list-guid gst-plugins-base Python3 xz"
|
|
PKG_LONGDESC="Portmaster - a simple tool that allows you to download various game ports"
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
COMPAT_URL="https://github.com/archr-linux/packages/raw/main/compat.zip"
|
|
|
|
makeinstall_target() {
|
|
export STRIP=true
|
|
|
|
mkdir -p ${INSTALL}/usr/config/PortMaster
|
|
cp -a ${PKG_DIR}/sources/* ${INSTALL}/usr/config/PortMaster
|
|
|
|
mkdir -p ${INSTALL}/usr/bin
|
|
cp -a ${PKG_DIR}/scripts/* ${INSTALL}/usr/bin
|
|
|
|
mkdir -p ${INSTALL}/usr/config/PortMaster/release
|
|
curl -Lo ${INSTALL}/usr/config/PortMaster/release/PortMaster.zip ${PKG_URL}
|
|
|
|
mkdir -p ${INSTALL}/usr/lib/compat
|
|
curl -Lo ${PKG_BUILD}/compat.zip ${COMPAT_URL}
|
|
unzip -qq ${PKG_BUILD}/compat.zip -d ${INSTALL}/usr/lib/compat
|
|
}
|