feat: add prefixhq

This commit is contained in:
2026-08-10 02:19:27 +03:00
parent d3bc0f7b95
commit 2ef1fe6129
3 changed files with 39 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
pkgbase = prefixhq
pkgdesc = Python/PyQt6 desktop tool for managing Steam Play (Proton/Wine) prefixes on Linux.
pkgver = 3.0.2
pkgrel = 1
url = https://github.com/Nastas95/PrefixHQ
arch = any
license = GPL-3.0-only
depends = python
depends = python-requests
depends = python-markdown
depends = python-pyqt6
provides = prefixhq
conflicts = prefixhq
source = prefixhq-3.0.2.tar.gz::https://github.com/Nastas95/PrefixHQ/archive/refs/tags/v3.0.2.tar.gz
sha256sums = 3f8257fd1f6e1b9a49dfaed16f60cceb67b4177c0c450eb9bdf4c2f8befb3acd
pkgname = prefixhq
+4
View File
@@ -0,0 +1,4 @@
/*
!/.gitignore
!/.SRCINFO
!/PKGBUILD
+18
View File
@@ -0,0 +1,18 @@
# Maintainer: Dominykas Svetikas <[email protected]>
pkgname=prefixhq
pkgver=3.0.2
pkgrel=1
pkgdesc='Python/PyQt6 desktop tool for managing Steam Play (Proton/Wine) prefixes on Linux.'
arch=('any')
url='https://github.com/Nastas95/PrefixHQ'
license=('GPL-3.0-only')
depends=('python' 'python-requests' 'python-markdown' 'python-pyqt6')
conflicts=('prefixhq')
provides=('prefixhq')
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('3f8257fd1f6e1b9a49dfaed16f60cceb67b4177c0c450eb9bdf4c2f8befb3acd')
package() {
cd "PrefixHQ-$pkgver"
install -Dm755 PrefixHQ.py "${pkgdir}/usr/bin/prefixhq"
}