summaryrefslogtreecommitdiffstats
path: root/awesome-stable_commit/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'awesome-stable_commit/PKGBUILD')
-rw-r--r--awesome-stable_commit/PKGBUILD60
1 files changed, 60 insertions, 0 deletions
diff --git a/awesome-stable_commit/PKGBUILD b/awesome-stable_commit/PKGBUILD
new file mode 100644
index 0000000..49f9c01
--- /dev/null
+++ b/awesome-stable_commit/PKGBUILD
@@ -0,0 +1,60 @@
+# Maintainer: kj_sh604 <406hs_jk@proton.me>
+
+pkgname=awesome
+pkgver=4.3
+pkgrel=4
+pkgdesc='Highly configurable framework window manager
+ (built on a personally known "stable" commit)'
+_commit='ad0290bc1aac3ec2391aa14784146a53ebf9d1f0'
+arch=('i686' 'x86_64')
+url='https://awesomewm.org'
+license=('GPL2')
+depends=('cairo' 'dbus' 'gdk-pixbuf2' 'libxdg-basedir' 'libxkbcommon-x11'
+ 'lua' 'lua-lgi' 'pango' 'startup-notification' 'xcb-util-cursor'
+ 'xcb-util-keysyms' 'xcb-util-wm' 'xcb-util-xrm' 'libxfixes')
+makedepends=('asciidoctor' 'cmake' 'docbook-xsl' 'git' 'imagemagick' 'ldoc'
+ 'xmlto')
+optdepends=('rlwrap: readline support for awesome-client'
+ 'dex: autostart your desktop files'
+ 'xcb-util-errors: for pretty-printing of X11 errors'
+ 'librsvg: for displaying SVG files without scaling artifacts'
+)
+provides=('notification-daemon')
+backup=('etc/xdg/awesome/rc.lua')
+source=("$pkgname::git+https://github.com/awesomeWM/awesome.git#commit=$_commit")
+md5sums=('SKIP')
+_LUA_VER=5.4
+
+# Use the following for a "git descriptive" pkgver=
+## pkgver() {
+## cd $pkgname
+## git describe | sed 's/^v//;s/-/./g'
+## }
+
+prepare() {
+ cd "$pkgname"
+ # Replace deprecated convert command with magick convert
+ # Warning: this may break in the future or when a new _commit is chosen
+ find . -type f -exec sed -i 's/\bconvert\b/magick convert/g' {} +
+}
+
+build() {
+ mkdir -p build
+ cd build
+ cmake ../$pkgname \
+ -DCMAKE_BUILD_TYPE=RELEASE \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DSYSCONFDIR=/etc \
+ -DLUA_INCLUDE_DIR=/usr/include/lua${_LUA_VER} \
+ -DLUA_LIBRARY=/usr/lib/liblua.so.${_LUA_VER} \
+ -DLUA_EXECUTABLE=/usr/bin/lua${_LUA_VER}
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+
+ install -Dm644 "$srcdir"/$pkgname/awesome.desktop \
+ "$pkgdir/usr/share/xsessions/awesome.desktop"
+}