blob: 58985cf06cdf8adcdd60af3895c47ef4a5ec03aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Description: X Window System Lock Screen
# URL: http://sillycycle.com/xlockmore.html
# Maintainer: Erich Eckner, crux at eckner dot net
# Contributor: 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
# !suid usr/bin/xlock
name=xlockmore
version=5.57
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
install -d $PKG//usr/share/xlock/sounds
make DESTDIR=$PKG install
}
|