diff options
author | fdev31 | 2025-03-23 15:59:05 +0100 |
---|---|---|
committer | fdev31 | 2025-03-23 15:59:05 +0100 |
commit | b01d939d2c6c1183b33b5286abb840648d223921 (patch) | |
tree | a752de03c885bcc47f0facff8a14be3d17427465 | |
parent | eb1c4d4f145644e920d717d83b298641a64405dc (diff) | |
download | aur-b01d939d2c6c1183b33b5286abb840648d223921.tar.gz |
switch to the C client
-rw-r--r-- | .SRCINFO | 3 | ||||
-rw-r--r-- | PKGBUILD | 6 |
2 files changed, 4 insertions, 5 deletions
@@ -1,7 +1,7 @@ pkgbase = pyprland-git pkgdesc = Easy scratchpads, menus, smart monitor placement and more hyprland tweaks (GIT version) pkgver = r1424.5293179 - pkgrel = 2 + pkgrel = 3 url = https://github.com/fdev31/pyprland arch = any license = MIT @@ -9,7 +9,6 @@ pkgbase = pyprland-git makedepends = python-build makedepends = python-installer makedepends = python-poetry - makedepends = go depends = python depends = python-aiofiles provides = pyprland @@ -2,14 +2,14 @@ # Contributor: Fabien Devaux <fdev31@gmail.com> pkgname=pyprland-git pkgver=r1424.5293179 -pkgrel=2 +pkgrel=3 pkgdesc="Easy scratchpads, menus, smart monitor placement and more hyprland tweaks (GIT version)" arch=(any) url="https://github.com/fdev31/pyprland" license=('MIT') groups=() depends=('python' 'python-aiofiles') -makedepends=('git' 'python-build' 'python-installer' 'python-poetry' 'go') +makedepends=('git' 'python-build' 'python-installer' 'python-poetry') provides=("${pkgname%-git}") conflicts=("${pkgname%-git}") replaces=() @@ -29,7 +29,7 @@ build() { cd "$srcdir/${pkgname%-git}" python -m build --wheel --no-isolation cd client - go build -ldflags "-s -w" pypr-client.go + ${CC:-gcc} -o pypr-client pypr-client.c } package() { |