You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
3.1 KiB
Bash

# Maintainer: Brett Cornwall <ainola@archlinux.org>
# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
# Contributor: Alexander F. Rødseth <xyproto@archlinux.org>
6 years ago
pkgname=sway
2 years ago
pkgver=1.8
epoch=1
pkgrel=5
6 years ago
pkgdesc='Tiling Wayland compositor and replacement for the i3 window manager'
arch=(x86_64)
url='https://swaywm.org/'
license=(MIT)
depends=(
'cairo'
'gdk-pixbuf2'
'libevdev.so'
'libinput'
'libjson-c.so'
'libudev.so'
'libwayland-server.so'
'libwlroots.so'
'libxcb'
'libxkbcommon.so'
'pango'
'pcre2'
'ttf-font'
)
makedepends=(meson ninja scdoc setconf wayland-protocols)
backup=(
etc/sway/config
etc/sway/config.d/50-systemd-user.conf
)
optdepends=(
'bemenu: Wayland-native alternative to dmenu'
'dmenu: Application launcher used in default config'
'foot: Terminal emulator used in the default configuration'
'i3status: Status line generation'
5 years ago
'mako: Lightweight notification daemon'
'polkit: System privilege control. Required if not using seatd service'
'swaybg: Wallpaper tool for sway'
5 years ago
'swayidle: Idle management daemon'
'swaylock: Screen locker'
'waybar: Highly customizable bar'
'xorg-xwayland: X11 support'
)
source=("https://github.com/swaywm/sway/releases/download/$pkgver/sway-$pkgver.tar.gz"
"https://github.com/swaywm/sway/releases/download/$pkgver/sway-$pkgver.tar.gz.sig"
"50-systemd-user.conf"
"sys_nice_user_xkb_configs.patch")
install=sway.install
2 years ago
sha512sums=('0dce213939bb9b38becfac62a22cadf2dc4ed723a8fa06dcaaa3625491722e89dc92bf1734f010d0823513a45d91501c8ba6b4c71d2bf46a1e805938937bab7b'
'SKIP'
'c2b7d808f4231f318e03789015624fd4cf32b81434b15406570b4e144c0defc54e216d881447e6fd9fc18d7da608cccb61c32e0e1fab2f1fe2750acf812d3137'
'156719e93d0213d1b54ce6e3a9b2dcc9246da5689dd2d3281546f9c042cbc69072f99b087e112fe777dcd786d2b9d1be1e1c9200feddffb5e2d16f8dfb27515d')
validpgpkeys=('34FF9526CFEF0E97A340E2E40FDE7BE0E88F5E48' # Simon Ser
'9DDA3B9FA5D58DD5392C78E652CB6609B22DA89A') # Drew DeVault
prepare() {
cd "$pkgname-$pkgver"
5 years ago
# Enable user xkb configs with cap_sys_nice - otherwise user xkb configs will
# break.
#
# This patch was originally at
# https://github.com/swaywm/sway/commit/2f2cdd60def006f6d3cbe318f9edd7d68fcb239a.patch
# but failed to apply correctly to meson.build. We don't need that part of
# the patch so just drop it.
patch -p1 < ../sys_nice_user_xkb_configs.patch
# Set the version information to 'Arch Linux' instead of 'makepkg'
5 years ago
sed -i "s/branch \\\'@1@\\\'/Arch Linux/g" meson.build
}
build() {
6 years ago
mkdir -p build
4 years ago
arch-meson build "$pkgname-$pkgver" -D sd-bus-provider=libsystemd -D werror=false -D b_ndebug=true
6 years ago
ninja -C build
}
package() {
6 years ago
DESTDIR="$pkgdir" ninja -C build install
install -Dm644 "$pkgname-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -Dm644 50-systemd-user.conf -t "$pkgdir/etc/sway/config.d/"
for util in autoname-workspaces.py inactive-windows-transparency.py grimshot; do
install -Dm755 "$pkgname-$pkgver/contrib/$util" -t \
"$pkgdir/usr/share/$pkgname/scripts"
done
}
6 years ago
# vim: ts=2 sw=2 et