Skip to content
Open
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
067b07c
add hyprutils
Bisher-Almasri Feb 18, 2025
5d6a6c1
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 18, 2025
051e830
added maintainers
Bisher-Almasri Feb 18, 2025
575e41a
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 18, 2025
2c05917
somehow forgot pacscript
Bisher-Almasri Feb 18, 2025
d2c29a5
Merge branch 'master' of https://github.com/BISHER-AL-MASRI/hyprutils
Bisher-Almasri Feb 18, 2025
726c42e
added maintainers v2
Bisher-Almasri Feb 18, 2025
ed9eea5
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 18, 2025
529c633
added maintainers v3 (forgot to remove s)
Bisher-Almasri Feb 18, 2025
c8943ed
Merge branch 'master' of https://github.com/BISHER-AL-MASRI/hyprutils
Bisher-Almasri Feb 18, 2025
f483820
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 18, 2025
4f1bcc4
Update packages/hyprutils/hyprutils.pacscript
BISHER-AL-MASRI Feb 19, 2025
9735a6d
Update packages/hyprutils/hyprutils.pacscript
BISHER-AL-MASRI Feb 19, 2025
94509d6
Update packages/hyprutils/hyprutils.pacscript
BISHER-AL-MASRI Feb 19, 2025
b944dd3
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 19, 2025
021f56a
Update hyprutils.pacscript
BISHER-AL-MASRI Feb 19, 2025
e3a003d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 19, 2025
c4f3970
Merge branch 'master' into master
BISHER-AL-MASRI Feb 19, 2025
eac90f5
Merge branch 'master' into master
BISHER-AL-MASRI Feb 19, 2025
f21a703
Update packages/hyprutils/hyprutils.pacscript
BISHER-AL-MASRI Feb 19, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packagelist
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ hyprland-bin
hyprlang
hyprpaper
hyprpicker
hyprutils
hyprwayland-scanner
i3blocks-git
i3lock-color
Expand Down
15 changes: 15 additions & 0 deletions packages/hyprutils/.SRCINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
pkgbase = hyprutils
gives = hyprutils
pkgver = 0.1.2
pkgrel = 1
pkgdesc = Hyprland utility tools
url = https://github.com/hyprwm/hyprutils
arch = amd64
arch = arm64
makedepends = cmake
makedepends = libpixman-1-dev
incompatible = debian:*
maintainer = Bisher Al Masri <[email protected]>
source = https://github.com/hyprwm/hyprutils.git#branch=main

pkgname = hyprutils
22 changes: 22 additions & 0 deletions packages/hyprutils/hyprutils.pacscript
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
pkgname="hyprutils"
pkgver="0.1.2"
pkgrel="1"
arch=("amd64" "arm64")
url="https://github.com/hyprwm/hyprutils"
source=("https://github.com/hyprwm/hyprutils.git#branch=main")
gives="hyprutils"
pkgdesc="Hyprland utility tools"
makedepends=("cmake" "libpixman-1-dev")
incompatible=('debian:*')
maintainer=("Bisher Al Masri <[email protected]>")

build() {
cd "hyprutils"
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -S . -B build
cmake --build build --config Release --target all -j"$(nproc 2> /dev/null || getconf NPROCESSORS_CONF)" DESTDIR="$(pkgdir)"
}

package() {
cd "hyprutils"
cmake --install build --prefix="${pkgdir}/usr"
}
16 changes: 16 additions & 0 deletions srclist
Original file line number Diff line number Diff line change
Expand Up @@ -5001,6 +5001,22 @@ pkgbase = hyprpicker

pkgname = hyprpicker
---
pkgbase = hyprutils
gives = hyprutils
pkgver = 0.1.2
pkgrel = 1
pkgdesc = Hyprland utility tools
url = https://github.com/hyprwm/hyprutils
arch = amd64
arch = arm64
makedepends = cmake
makedepends = libpixman-1-dev
incompatible = debian:*
maintainer = Bisher Al Masri <[email protected]>
source = https://github.com/hyprwm/hyprutils.git#branch=main

pkgname = hyprutils
---
pkgbase = hyprwayland-scanner
pkgver = 0.3.4
pkgdesc = A Hyprland implementation of wayland-scanner, in and for C++
Expand Down