26 lines
715 B
Text
26 lines
715 B
Text
# Template file for 'xsecurelock'
|
|
pkgname=xsecurelock
|
|
version=0.5
|
|
revision=2
|
|
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}
|
|
}
|