jobcomm/ly-git/PKGBUILD-aur

39 lines
963 B
Text
Raw Normal View History

# Maintainer: steffeno <steffeno dash etc at protonmail dot com>
_pkgname=ly
pkgname="$_pkgname"-git
2024-01-06 00:28:30 +01:00
pkgver=0.6.0.r4.g4ee2b3e
pkgrel=1
pkgdesc="TUI display manager"
arch=(i686 x86_64 aarch64)
url="https://github.com/fairyglade/$_pkgname"
license=('custom:WTFPL')
depends=(pam)
makedepends=(git libxcb)
optdepends=('xorg-xauth: for X server sessions')
2024-01-06 00:28:30 +01:00
conflicts=(ly)
provides=(ly)
backup=(etc/"$_pkgname"/{config.ini,wsetup.sh,xsetup.sh})
source=("git+$url.git")
md5sums=('SKIP')
pkgver() {
2024-01-06 00:28:30 +01:00
cd "$_pkgname"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
2024-01-06 00:28:30 +01:00
cd "$_pkgname"
git submodule update --init --recursive
}
build() {
2024-01-06 00:28:30 +01:00
make -C "$_pkgname"
}
package() {
2024-01-06 00:28:30 +01:00
cd "$_pkgname"
make DESTDIR="$pkgdir" NAME=ly-dm install installsystemd
sed -i "s;/usr/bin/ly;/usr/bin/ly-dm;g" "$pkgdir/usr/lib/systemd/system/ly.service"
install -D -m644 license.md "${pkgdir}/usr/share/licenses/${pkgname}/WTFPL"
}