21 lines
519 B
Bash
21 lines
519 B
Bash
# Template file for 'earlyoom'
|
|
pkgname=earlyoom
|
|
version=0.10
|
|
revision=1
|
|
short_desc="Early OOM Daemon for Linux"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="MIT"
|
|
homepage="https://github.com/rfjakob/earlyoom"
|
|
distfiles="https://github.com/rfjakob/${pkgname}/archive/v${version}.tar.gz"
|
|
checksum=b015a2551e46abcc843c29b27ae8466a187b30fad8084574545f66624cab0842
|
|
|
|
do_build() {
|
|
${CC} ${CFLAGS} -DVERSION='"'$version'"' -o earlyoom *.c ${LDFLAGS}
|
|
}
|
|
|
|
do_install() {
|
|
vbin earlyoom
|
|
vsv earlyoom
|
|
vlicense LICENSE
|
|
}
|