30 lines
701 B
Plaintext
30 lines
701 B
Plaintext
# Description: X Window System Lock Screen
|
|
# URL: http://sillycycle.com/xlockmore.html
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Packager: Daniel Mueller, daniel at danm dot de
|
|
# Depends on: fortune glu gtk util-linux xorg-libxmu xorg-libxpm
|
|
|
|
name=xlockmore
|
|
version=5.54
|
|
release=1
|
|
source=(http://sillycycle.com/xlock/xlockmore-${version}.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--enable-appdefaultdir=/usr/share/X11/app-defaults \
|
|
--enable-vtlock \
|
|
--enable-syslog \
|
|
--enable-multiple-user \
|
|
--enable-multiple-root \
|
|
--with-opengl \
|
|
--without-motif \
|
|
--without-esound
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|