wok view lockdis/receipt @ rev 4033

Update: xorg X11 and Xrender devs (DEPENDS)
author Matthew Sheets <rcx@zoominternet.net>
date Mon Sep 07 16:53:32 2009 +0000 (2009-09-07)
parents
children 8752c40cc534
line source
1 # SliTaz package receipt.
3 PACKAGE="lockdis"
4 VERSION="1.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Simple screen locker."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg-libX11 xorg-libXau xorg-libXpm"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://lockdis.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make && make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 }