mirror of
https://github.com/javalsai/lidm.git
synced 2026-02-27 12:00:44 +01:00
* fix(pkg,aur): sources now are version unique * build: allow to override git-rev and timestamp build info * chore: organize and parallelize some checks * chore: make standard PKGBUIDLs * pkg(aur): `-bin` only has to depend on the `.so` file * pkg(feat,aur): multiarch `-bin` pkg * ci(void): update xbps first, add warning * pkg(aur): bump pkgrels * pkg(aur): pkgrel again AND `.SRCINFO` finally --------- Co-authored-by: grialion <48643945+grialion@users.noreply.github.com>
22 lines
621 B
Bash
22 lines
621 B
Bash
# shellcheck disable=SC2034,SC2154,SC2164
|
|
# Maintainer: javalsai <javalsai@proton.me>
|
|
pkgname=lidm
|
|
pkgver=1.2.3
|
|
pkgrel=3
|
|
depends=('pam')
|
|
makedepends=()
|
|
pkgdesc="A fully colorful customizable TUI display manager made in C. (build latest tag)"
|
|
arch=('any')
|
|
url="https://github.com/javalsai/lidm"
|
|
license=('GPL')
|
|
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/javalsai/lidm/archive/refs/tags/v$pkgver.tar.gz")
|
|
sha256sums=('1ce414b510c5bbc3e32ea882f915b4d3958cb82eb1fbb5cf33e62f69c844bf93')
|
|
|
|
build() {
|
|
make -C "$srcdir/lidm-$pkgver"
|
|
}
|
|
|
|
package() {
|
|
make -C "$srcdir/lidm-$pkgver" DESTDIR="$pkgdir" install
|
|
}
|