opt/i3/Pkgfile

25 lines
674 B
Plaintext
Raw Normal View History

# Description: A tiling window manager
2021-02-01 17:58:29 +01:00
# URL: https://i3wm.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: cmake pango xorg-xcb-util-cursor xorg-xcb-util-keysyms xorg-xcb-util-wm xorg-xcb-util-xrm libxkbcommon yajl libev startup-notification
2020-11-28 18:22:57 +01:00
name=i3
2021-02-01 17:58:29 +01:00
version=4.19.1
release=1
source=(http://i3wm.org/downloads/$name-$version.tar.xz)
2020-11-28 18:22:57 +01:00
build() {
meson setup build $name-$version \
--prefix=/usr \
--sysconfdir=/usr/etc \
--buildtype=release
2020-11-28 18:22:57 +01:00
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2020-11-28 18:22:57 +01:00
install -d $PKG/usr/share/man/man1
install -m 0644 $name-$version/man/*.1 $PKG/usr/share/man/man1/
2020-11-28 18:22:57 +01:00
rm -r $PKG/usr/share/doc
2020-11-28 18:22:57 +01:00
}