summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b8d3e063abf53fbdff36598d54934f2228036411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: cylgom <cylgom@gmail.com>
pkgname=ly-git
pkgver=0.0.1
pkgrel=1
pkgdesc="ncurses display manager"
arch=('i686' 'x86_64')
url="https://github.com/cylgom/ly"
license=('custom:WTFPL')
makedepends=('git')
depends=('pam' 'ncurses' 'libx11' 'xorg-xinit' 'xorg-xauth')
source=('git+https://github.com/cylgom/ly.git')
md5sums=('SKIP')

build() {
	cd ly
	make
}

package() {
	cd ly
	make DESTDIR="$pkgdir" install
	install -D -m644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/WTFPL"
}