yet again

This commit is contained in:
creations 2025-01-28 23:33:35 -05:00
parent 16c4b29c17
commit 51658ac751
Signed by: creations
GPG key ID: 8F553AA4320FC711
3 changed files with 3 additions and 12 deletions

4
.gitignore vendored
View file

@ -1,5 +1,5 @@
src src
pkg pkg
NaviThingy NaviThingy
navithingy-0* navithingy-git-0*
navithingy-debug* navithingy-git-debug*

View file

@ -20,11 +20,9 @@ conflicts=('navithingy')
pkgver() { pkgver() {
cd "$srcdir/NaviThingy" cd "$srcdir/NaviThingy"
local tag local tag rev commit
tag=$(git describe --tags --abbrev=0 | sed 's/^NaviThingy//' | tr -d 'v') tag=$(git describe --tags --abbrev=0 | sed 's/^NaviThingy//' | tr -d 'v')
local rev
rev=$(git rev-list --count HEAD) rev=$(git rev-list --count HEAD)
local commit
commit=$(git rev-parse --short HEAD) commit=$(git rev-parse --short HEAD)
echo "${tag}.r${rev}.${commit}" echo "${tag}.r${rev}.${commit}"

View file

@ -1,7 +0,0 @@
post_install() {
echo "NaviThingy installed. GPU compositing is disabled to prevent WebKitGTK issues."
}
pre_remove() {
echo "Removing NaviThingy..."
}