blob: 68d26c57084661ce0ea3f803d5b14da34c6afd7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Maintainer: steffeno <steffeno dash etc at protonmail dot com>
_pkgname=ly
pkgname="$_pkgname"-git
pkgver=1.0.0.r94.gc87d5b4
pkgrel=1
pkgdesc="TUI display manager"
arch=(i686 x86_64 aarch64)
url="https://github.com/fairyglade/$_pkgname"
license=('custom:WTFPL')
depends=(pam)
makedepends=(zig git libxcb)
optdepends=('xorg-xauth: for X server sessions')
conflicts=(ly)
provides=(ly)
backup=(etc/"$_pkgname"/{config.ini,setup.sh})
source=("git+$url.git")
md5sums=('SKIP')
pkgver() {
cd "$_pkgname"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$_pkgname"
zig build
}
package() {
# NOTE: AFAICT `zig build` can't currently be used to correctly install these files in such an
# environment, either the variables or the processes regarding file patching and file
# installation need to be separated for it to work
cd "$_pkgname"
install -dZ "$pkgdir/etc/ly"
install -DZ zig-out/bin/ly -T "$pkgdir"/usr/bin/ly-dm
install -DZ res/config.ini -t "$pkgdir"/etc/ly
sed -i 's;$DEFAULT_TTY;2;g' "$pkgdir"/etc/ly/config.ini
sed -i 's;$CONFIG_DIRECTORY;/etc;g' "$pkgdir"/etc/ly/config.ini
sed -i 's;$PREFIX_DIRECTORY;/usr;g' "$pkgdir"/etc/ly/config.ini
install -DZ res/setup.sh -t "$pkgdir"/etc/ly
sed -i 's;$CONFIG_DIRECTORY;/etc;g' "$pkgdir"/etc/ly/setup.sh
install -dZ "$pkgdir"/etc/ly/lang
install -DZ res/lang/* -t "$pkgdir"/etc/ly/lang
install -DZ -m644 res/pam.d/ly -t "$pkgdir"/etc/pam.d
install -dZ "$pkgdir"/usr/lib/systemd/system
install -DZ -m644 res/ly.service -t "$pkgdir"/usr/lib/systemd/system
sed -i 's;$DEFAULT_TTY;2;g' "$pkgdir"/usr/lib/systemd/system/ly.service
sed -i 's;$CONFIG_DIRECTORY;/etc;g' "$pkgdir"/usr/lib/systemd/system/ly.service
sed -i 's;$PREFIX_DIRECTORY;/usr;g' "$pkgdir"/usr/lib/systemd/system/ly.service
sed -i 's;$EXECUTABLE_NAME;ly-dm;g' "$pkgdir"/usr/lib/systemd/system/ly.service
install -DZ -m644 license.md -T "$pkgdir"/usr/share/licenses/"$pkgname"/WTFPL
}
|