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,12 +1,12 @@
pkgbase = lidm
pkgdesc = A fully colorful cutomizable TUI display manager made in C. (build latest tag)
pkgver = 0.0.1
pkgrel = 3
pkgrel = 4
url = https://github.com/javalsai/lidm
arch = any
license = GPL
depends = pam
source = lidm-repo::git+https://github.com/javalsai/lidm
source = lidm::git+https://github.com/javalsai/lidm
sha256sums = SKIP
pkgname = lidm

View File

@@ -1,21 +1,22 @@
# Maintainer: javalsai <javalsai@proton.me>
pkgname=lidm
pkgver=0.0.1
pkgrel=3
pkgrel=4
depends=('pam')
pkgdesc="A fully colorful cutomizable TUI display manager made in C. (build latest tag)"
arch=('any')
url="https://github.com/javalsai/lidm"
license=('GPL')
source=("lidm-repo::git+https://github.com/javalsai/lidm")
source=("lidm::git+https://github.com/javalsai/lidm")
sha256sums=('SKIP')
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"
}