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.

57 lines
1.5 KiB
Bash

# Maintainer: Jerome Leclanche <jerome@leclan.ch>
6 years ago
# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>
6 years ago
pkgname=sway
5 years ago
pkgver=1.2
_hash='be138dab4419d3e76a7742428d9ec85bce06116b'
epoch=1
pkgrel=2
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 json-c pango pcre swaybg ttf-font 'wlroots>=0.6')
makedepends=(git meson ninja scdoc setconf wayland-protocols)
5 years ago
backup=(etc/sway/config)
optdepends=(
5 years ago
'dmenu: Application launcher'
'i3status: Status line'
'grim: Screenshot utility'
'mako: Lightweight notification daemon'
'rxvt-unicode: Terminal emulator'
'slurp: Select a region'
'swayidle: Idle management daemon'
'swaylock: Screen locker'
'wallutils: Timed wallpapers'
'waybar: Highly customizable bar'
6 years ago
'xorg-server-xwayland: X11 support'
)
5 years ago
source=("git+https://github.com/swaywm/sway#tag=$pkgver")
md5sums=('SKIP')
prepare() {
5 years ago
cd $pkgname
# check if the git hash matches
if [[ "$(git rev-parse HEAD)" != "$_hash" ]]; then
echo "error: $(git rev-parse HEAD) != $_hash"
exit 1
fi
# 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
arch-meson build $pkgname -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/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
6 years ago
# vim: ts=2 sw=2 et