wok view slock/receipt @ rev 10961

Add:laptop-mode-tools,util-linux-ng-blockdev
author Liu Peng <hipeng@yahoo.com>
date Tue Sep 20 20:44:27 2011 +0800 (2011-09-20)
parents 4a193c62c501
children dfca2060aa32
line source
1 # SliTaz package receipt.
3 PACKAGE="slock"
4 VERSION="0.9"
5 CATEGORY="security"
6 SHORT_DESC="Simple X display locker."
7 MAINTAINER="mallory@sweetpeople.org"
8 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext"
9 BUILD_DEPENDS="xorg-xproto xorg-xextproto"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.suckless.org/programs/slock.html"
12 WGET_URL="http://code.suckless.org/dl/tools/slock-0.9.tar.gz"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 mv config.mk config.mk.original
19 sed -e 's/usr\/local/usr/' < config.mk.original > config.mk
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }