blob: d8c7cec9d89417b8090eba632aca2487484ee2e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Maintainer: cosmo <aur@dawnson.is>
# Maintainer: FreeFull <jazz2rulez@gmail.com>
# Contributor: Julius Michaelis <gitter@liftm.de.de>
# Contributor: Nebulosa <nebulosa2007-at-yandex-dot-ru>
## The following variable can be customized at build time.
## Use env or export to change at your wish
##
## Example: env _sccache=y makepkg -sc
##
## Default is: None => not use sccache
##
## More info: https://github.com/mozilla/sccache
: ${_sccache:=}
pkgname=niri-git
pkgver=25.05.1.r91.gf74d83d
pkgrel=2
pkgdesc="Scrollable-tiling Wayland compositor"
arch=(x86_64 aarch64)
url="https://github.com/YaLTeR/${pkgname%-git}"
license=(GPL-3.0-or-later)
depends=(cairo glib2 libdisplay-info libinput libpipewire libxkbcommon mesa pango pixman seatd)
makedepends=(clang rust git makepkg-git-lfs-proto)
[[ -n "${_sccache}" ]] && makedepends+=(sccache)
optdepends=('fuzzel: application launcher similar to rofi drun mode'
'waybar: highly customizable Wayland bar'
'alacritty: a cross-platform OpenGL terminal emulator'
'mako: notification daemon for Wayland'
'swaybg: wallpaper tool for Wayland compositors'
'swaylock: screen locker for Wayland'
'xdg-desktop-portal-gtk: implements most of the basic functionality'
'xdg-desktop-portal-gnome: screencasting support'
'gnome-keyring: implements the secret portal, for certain apps to work'
'polkit-gnome: when apps need to ask for root permissions')
provides=("${pkgname%-git}=${pkgver}")
conflicts=("${pkgname%-git}-bin" "${pkgname%-git}")
options=(!debug !lto !strip)
source=("${pkgname%-git}::git-lfs+$url.git")
b2sums=('SKIP')
pkgver() {
cd "${pkgname%-git}"
git describe --long --tags --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//'
}
prepare() {
cd "${pkgname%-git}"
# Tuning cargo
export CARGO_HOME="${srcdir}/${pkgname%-git}/.cargo" # Download all to src directory, not in ~/.cargo
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
build() {
cd "${pkgname%-git}"
# Tuning rust compiler
export CARGO_ENCODED_RUSTFLAGS="--remap-path-prefix=${srcdir}=/" # Prevent warning: 'Package contains reference to $srcdir'
[[ -n "${_sccache}" ]] && export RUSTC_WRAPPER=sccache # If $_sccache not empty, build using binary cache
# Tuning cargo
export CARGO_HOME="${srcdir}/${pkgname%-git}/.cargo" # Use downloaded earlier from src directory, not from ~/.cargo
export CARGO_TARGET_DIR=target # Place the output in target relative to the current directory
cargo build --frozen --release
}
package() {
cd "${pkgname%-git}"
install -Dm755 "target/release/${pkgname%-git}" -t "${pkgdir}/usr/bin/"
install -Dm755 "resources/${pkgname%-git}-session" -t "${pkgdir}/usr/bin/"
install -Dm644 resources/default-config.kdl -t "${pkgdir}/usr/share/doc/niri"
install -Dm644 "resources/${pkgname%-git}.desktop" -t "${pkgdir}/usr/share/wayland-sessions/"
install -Dm644 "resources/${pkgname%-git}-portals.conf" -t "${pkgdir}/usr/share/xdg-desktop-portal/"
install -Dm644 "resources/${pkgname%-git}"{.service,-shutdown.target} -t "${pkgdir}/usr/lib/systemd/user/"
}
|