diff options
author | Allusive | 2023-11-16 19:35:50 +1100 |
---|---|---|
committer | Allusive | 2023-11-16 19:35:50 +1100 |
commit | 1daf8df8232f8faee521dd06811e1be33429db1c (patch) | |
tree | 11e2fa6557bdafca721c1612680c5caef9ea4bad | |
parent | b491a7116f66dfab3153105838a8b08954a5baac (diff) | |
download | aur-1daf8df8232f8faee521dd06811e1be33429db1c.tar.gz |
fix
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 10 |
2 files changed, 5 insertions, 7 deletions
@@ -1,7 +1,7 @@ pkgbase = compfy pkgdesc = A Better Alternative to Picom. With Animations and Active Support pkgver = 1.6.5 - pkgrel = 1 + pkgrel = 2 url = https://github.com/allusive-dev/compfy arch = i686 arch = x86_64 @@ -1,8 +1,6 @@ -_gitfolder=compfy -_gitname=compfy pkgname=compfy pkgver=1.6.5 -pkgrel=1 +pkgrel=2 pkgdesc="A Better Alternative to Picom. With Animations and Active Support" arch=(i686 x86_64) url="https://github.com/allusive-dev/compfy" @@ -12,16 +10,16 @@ makedepends=('git' 'meson' 'ninja' 'gcc' 'uthash') optdepends=('dbus: To control Compfy via D-Bus') provides=('compton' 'compton-git' 'picom' 'picom-git') conflicts=('compton' 'compton-git' 'picom' 'picom-git') -source=("${_gitfolder}::git+https://github.com/allusive-dev/compfy.git#tag=${pkgver}") +source=("${pkgname}::git+https://github.com/allusive-dev/compfy.git#tag=${pkgver}") md5sums=('SKIP') build() { - cd "${srcdir}/${_gitfolder}" + cd "${srcdir}/${pkgname}" meson setup -Dwith_docs=false . build ninja -C build } package() { - cd "${srcdir}/${_gitfolder}" + cd "${srcdir}/${pkgname}" DESTDIR="$pkgdir/" ninja -C build install # install license |