Package Details: hyprpicker 0.3.0-1

Git Clone URL: https://aur.archlinux.org/hyprpicker.git (read-only, click to copy)
Package Base: hyprpicker
Description: A wlroots-compatible Wayland color picker that does not suck.
Upstream URL: https://github.com/hyprwm/hyprpicker
Keywords: hyprland
Licenses: BSD-3-Clause
Submitter: PlasticSoup
Maintainer: PlasticSoup
Last Packager: PlasticSoup
Votes: 33
Popularity: 4.68
First Submitted: 2023-06-12 03:08 (UTC)
Last Updated: 2024-06-08 02:28 (UTC)

Latest Comments

pingwt commented on 2024-06-06 16:48 (UTC) (edited on 2024-06-06 16:50 (UTC) by pingwt)

After the 0.3.0 update, this is probably what you need to change (build step copied from upstream's readme)

sha256sums=('a443188ef7619be48c9992ea208121772b7e1da6662d672c650e30e159eeb891')

build() {
    cd "$pkgname-$pkgver"
    cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
    cmake --build ./build --config Release --target hyprpicker -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF`
}

murlakatamenka commented on 2024-02-20 04:59 (UTC)

please, explicitly set CC and CXX because it doesn't build with clang:

build() {
  #...
  export CC=gcc
  export CXX=g++

  make all
}

PlasticSoup commented on 2023-06-29 03:45 (UTC)

Good catch eclairevoyant, thanks. I'll add it.

eclairevoyant commented on 2023-06-27 06:30 (UTC)

I would suggest adding wl-clipboard as an optional dependency (for the --autocopy option)