Skip to content

Commit 697edda

Browse files
committed
feat: aquamarine
1 parent 7692c50 commit 697edda

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,11 @@ jobs:
8888
./xbps-src pkg -j$(nproc) -m masterdir-${{ matrix.arch }} hyprutils
8989
./xbps-src pkg -j$(nproc) -m masterdir-${{ matrix.arch }} hyprlang
9090
./xbps-src pkg -j$(nproc) -m masterdir-${{ matrix.arch }} hyprgraphics
91-
# ./xbps-src pkg -j$(nproc) -m masterdir-${{ matrix.arch }} hyprwayland-scanner
91+
./xbps-src pkg -j$(nproc) -m masterdir-${{ matrix.arch }} hyprwayland-scanner
92+
./xbps-src pkg -j$(nproc) -m masterdir-${{ matrix.arch }} aquamarine
9293
# ./xbps-src pkg -j$(nproc) -m masterdir-${{ matrix.arch }} hyprpaper
9394
# ./xbps-src pkg -j$(nproc) -m masterdir-${{ matrix.arch }} hyprlock
9495
# ./xbps-src pkg -j$(nproc) -m masterdir-${{ matrix.arch }} hypridle
95-
# ./xbps-src pkg -j$(nproc) -m masterdir-${{ matrix.arch }} aquamarine
96-
# ./xbps-src pkg -j$(nproc) -m masterdir-${{ matrix.arch }} hyprgraphics
9796
# ./xbps-src pkg -j$(nproc) -m masterdir-${{ matrix.arch }} hyprland-protocols
9897
# ./xbps-src pkg -j$(nproc) -m masterdir-${{ matrix.arch }} hyprland
9998

srcpkgs/aquamarine/template

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,15 @@ changelog="https://github.com/hyprwm/aquamarine/releases"
2828
distfiles="https://github.com/hyprwm/aquamarine/archive/refs/tags/v${version}.tar.gz"
2929
checksum="822ce38345bc4c1b95966c79ee72ff18d753aa923c83e9aa64e9d82eebf55a38"
3030

31-
build_options="clang"
32-
build_options_default="clang"
31+
build_options="clang gcc"
32+
build_options_default="gcc"
3333
desc_option_clang="Use clang to build"
34+
desc_option_gcc="Use gcc to build"
35+
36+
if [ "$build_option_gcc" ]; then
37+
hostmakedepends+=" gcc"
38+
makedepends+=" libgcc-devel fmt-devel"
39+
fi
3440

3541
if [ "$build_option_clang" ]; then
3642
hostmakedepends+=" clang19"

srcpkgs/hyprwayland-scanner/template

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,15 @@ homepage="https://github.com/hyprwm/hyprwayland-scanner"
1313
distfiles="https://github.com/hyprwm/hyprwayland-scanner/archive/refs/tags/v${version}.tar.gz"
1414
checksum="ac73f626019f8d819ff79a5fca06ce4768ce8a3bded6f48c404445f3afaa25ac"
1515

16-
build_options="clang"
17-
build_options_default="clang"
16+
build_options="clang gcc"
17+
build_options_default="gcc"
1818
desc_option_clang="Use clang to build"
19+
desc_option_gcc="Use gcc to build"
20+
21+
if [ "$build_option_gcc" ]; then
22+
hostmakedepends+=" gcc"
23+
makedepends+=" libgcc-devel fmt-devel"
24+
fi
1925

2026
if [ "$build_option_clang" ]; then
2127
hostmakedepends+=" clang19"

0 commit comments

Comments
 (0)