summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkj-sh6042024-07-22 09:52:32 -0400
committerkj-sh6042024-07-22 09:52:32 -0400
commit58b7602cf0f99f2fea23b2504ea77ded2a279765 (patch)
treea574443915adba1737f7a38d0e31fc22974c1229
parentae3c66c31e8961088f1da1b7e9b12d4c80e1e29b (diff)
kj-gitbot: ../awesome-stable_commit/PKGBUILD
-rw-r--r--awesome-stable_commit/PKGBUILD60
1 files changed, 0 insertions, 60 deletions
diff --git a/awesome-stable_commit/PKGBUILD b/awesome-stable_commit/PKGBUILD
deleted file mode 100644
index 49f9c01..0000000
--- a/awesome-stable_commit/PKGBUILD
+++ /dev/null
@@ -1,60 +0,0 @@
-# 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"
-}