wok view slock/receipt @ rev 9239

strigi: fix BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 12 16:08:57 2011 +0100 (2011-03-12)
parents 0d71947173a7
children 02bbaa9d12ba
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 strip -s $fs/usr/bin/*
30 }