summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 89109c3a62a0f4ed063e37b038615e79443ba2a3 (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
# Maintainer: GreyXor <greyxor@protonmail.com>
# Contributor: Drew DeVault <sir@cmpwn.com>

pkgname=sway-git
pkgver=r7233.0aceff74
pkgrel=1
arch=('x86_64')
pkgdesc='Tiling Wayland compositor and replacement for the i3 window manager (git development version)'
url='https://swaywm.org'
license=('MIT')
depends=(
    "cairo"
    "gdk-pixbuf2"
    "glib2"
    "glibc"
    "json-c"
    "libdrm"
    "libevdev"
    "libinput"
    "libxcb"
    "libxkbcommon"
    "pango"
    "pcre2"
    "pixman"
    "systemd-libs"
    "wayland"
    "wlroots-git"
    "xcb-util-wm"
)
makedepends=(
    "git"
    "libcap"
    "meson"
    "scdoc"
    "wayland-protocols"
)
optdepends=(
    'wmenu: Application launcher used in default configuration'
    'foot: Terminal emulator used in default configuration'
    'polkit: System privilege control. Required if not using seatd service'
    'swaybg: Wallpaper tool for sway'
    'swayidle: Idle management daemon'
    'swaylock: Screen locker'
    'xorg-xwayland: X11 support'
    'xdg-desktop-portal-gtk: Portal used for default file picking'
    'xdg-desktop-portal-wlr: Portal used for screen sharing'
)
install="${pkgname}.install"
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
backup=("etc/sway/config")
source=("${pkgname}::git+https://github.com/swaywm/sway.git"
    "50-systemd-user.conf"
"sway-portals.conf")
b2sums=('SKIP'
        '71f45f9abb4e9f98a52177b227aa30ab27d02c9eef8a31400460e71c72b6d40ec396581f0b1703d4cec655aaba704077212882f643c6efb6cda951ea69b5383d'
        'eeaa6bdfae0fa6c0445d7d02209ef9142d529f1770fd8d9d614772c276ffa7461247523399164fed70ad39b25af9a91fcf8afa23af5c193c898c44487956de7f')
pkgver() {
    # Calculate the version dynamically using git information
    printf "r%s.%s" "$(git -C "$srcdir/${pkgname}" rev-list --count HEAD)" "$(git -C "$srcdir/${pkgname}" rev-parse --short HEAD)"
}

build() {
    arch-meson build "${pkgname}" -D sd-bus-provider=libsystemd -D werror=false -D b_ndebug=true

    meson compile -C build
}

package() {
    meson install -C build --destdir "$pkgdir"

    install -Dm644 "${pkgname}/LICENSE" "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"

    install -Dm644 50-systemd-user.conf -t "$pkgdir/etc/sway/config.d/"
    install -Dm644 sway-portals.conf "$pkgdir/usr/share/xdg-desktop-portal/sway-portals.conf"
}