Skip to content
Snippets Groups Projects
PKGBUILD 2.37 KiB
Newer Older
# Maintainer: Caleb Maclennan <caleb@alerque.com>
# Contributor: Levente Polyak <anthraxx[at]archlinux[dot]org>
Levente Polyak's avatar
Levente Polyak committed
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
Bartłomiej Piotrowski's avatar
Bartłomiej Piotrowski committed
# Contributor: Sébastien Luttringer
Sébastien Luttringer's avatar
Sébastien Luttringer committed
# Contributor: xduugu
# Contributor: Ronald van Haren <ronald.archlinux.org>
# Contributor: Vesa Kaihlavirta

pkgname=awesome
Levente Polyak's avatar
Levente Polyak committed
pkgver=4.3
Sébastien Luttringer's avatar
Sébastien Luttringer committed
pkgdesc='Highly configurable framework window manager'
url='https://awesomewm.org'
arch=(x86_64)
license=(GPL-2.0-or-later)
depends=(cairo
         dbus
         gdk-pixbuf2
         imlib2
         libxdg-basedir
         libxkbcommon
         libxkbcommon-x11
         lua53
         lua53-lgi
         pango
         startup-notification
         xcb-util-cursor
         xcb-util-keysyms
         xcb-util-wm
         xcb-util-xrm
         xorg-xmessage)
makedepends=(asciidoctor
             cmake
             docbook-xsl
             doxygen
             imagemagick
             ldoc
             ttf-font
             xmlto)
Bartłomiej Piotrowski's avatar
Bartłomiej Piotrowski committed
optdepends=('rlwrap: readline support for awesome-client'
            'dex: autostart your desktop files'
            'vicious: widgets for the Awesome window manager')
provides=(notification-daemon)
Sébastien Luttringer's avatar
Sébastien Luttringer committed
backup=('etc/xdg/awesome/rc.lua')
_archive="$pkgname-$pkgver"
source=("https://github.com/awesomeWM/awesome/releases/download/v$pkgver/$_archive.tar.xz"{,.asc})
Levente Polyak's avatar
Levente Polyak committed
sha512sums=('c5ef1e8dc593e7783b895d22143154aea8f211beeda24672a7ee4ed5112b4f4284043f848a151f3d3c4f569e91308670367a4353f705b20511b36495b22fa3f5'
Levente Polyak's avatar
Levente Polyak committed
            'SKIP')
validpgpkeys=('2BB32F88FF3D1E76E682303F22E428EBCB8FCB06') # Uli Schlachter <psychon@znc.in>
Bartłomiej Piotrowski's avatar
Bartłomiej Piotrowski committed

prepare() {
	cd "$_archive"
	sed -i 's/COMMAND lua /COMMAND lua5.3 /' awesomeConfig.cmake
	sed -i 's| lua | lua5.3 |;s/lua)/lua5.3)/' tests/examples/CMakeLists.txt
	sed -i '1s|/usr/bin/env lua$|/usr/bin/env lua5.3|' build-utils/check_for_invalid_requires.lua
	sed -i 's/"lua"/"lua5.3"/' tests/test-spawn.lua
Bartłomiej Piotrowski's avatar
Bartłomiej Piotrowski committed
}
	cd "$_archive"
	CFLAGS+=' -fcommon' # https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
	cmake -B build \
		-DCMAKE_BUILD_TYPE=RELEASE \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DSYSCONFDIR=/etc \
		-DLUA_LIBRARY=/usr/lib/liblua5.3.so \
		-DLUA_INCLUDE_DIR=/usr/include/lua5.3
	make -C build
	cd "$_archive"
	make -C build DESTDIR="$pkgdir" install
	install -Dm0644 -t "$pkgdir/usr/share/xsessions/" awesome.desktop