void-packages/srcpkgs/xsecurelock/template

27 lines
715 B
Bash
Raw Normal View History

2014-12-22 01:15:38 +00:00
# Template file for 'xsecurelock'
pkgname=xsecurelock
version=0.5
2014-12-23 00:27:24 +00:00
revision=2
2014-12-22 01:15:38 +00:00
build_style=gnu-configure
configure_args="--with-pam-service-name=system-auth"
hostmakedepends="pkg-config git automake"
makedepends="libX11-devel pam-devel"
short_desc="An X11 screen locker designed with the primary goal of security"
maintainer="Sean R. Lang <srlang@ncsu.edu>"
license="Apache-2.0"
homepage="https://github.com/google/xsecurelock"
pre_configure() {
sh autogen.sh
}
do_fetch() {
local url="git://github.com/google/xsecurelock.git"
msg_normal "Fetching source from $url ...\n"
git clone --branch v${version} ${url} ${pkgname}-${version}
}
do_build() {
make CC=$CC CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" ${makejobs}
}