add: maintainer to aur packages

close #9
This commit is contained in:
2024-07-28 16:48:22 +02:00
parent cac037cb48
commit be74e5ef40
6 changed files with 18 additions and 15 deletions

View File

@@ -1,6 +1,7 @@
# Maintainer: javalsai <javalsai@proton.me>
pkgname=lidm-git
pkgver=0.0.1.r0.gd6b165b
pkgrel=3
pkgrel=4
depends=('pam')
makedepends=('git' 'make')
pkgdesc="A fully colorful cutomizable TUI display manager made in C. (last git commit)"
@@ -9,22 +10,22 @@ url="https://github.com/javalsai/lidm"
license=('GPL')
provides=('lidm')
conflicts=('lidm')
source=("lidm-repo::git+https://github.com/javalsai/lidm")
source=("lidm::git+https://github.com/javalsai/lidm")
sha256sums=('SKIP')
pkgver() {
cd lidm-repo
cd "$pkgname"
git describe --long --abbrev=7 --tags | \
sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd lidm-repo
cd "$pkgname"
make CFLAGS="-O3"
}
package() {
cd lidm-repo
cd "$pkgname"
install -Dm755 lidm "${pkgdir}/usr/bin/lidm"
install -Dm755 themes/default.ini "${pkgdir}/etc/lidm.ini"
}