wok-6.x annotate lockdis/receipt @ rev 16165
links-dfb: typo in dip.c
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Mar 29 08:53:12 2014 +0000 (2014-03-29) |
parents | 8752c40cc534 |
children | 95324ca5396c |
rev | line source |
---|---|
pankso@3817 | 1 # SliTaz package receipt. |
pankso@3817 | 2 |
pankso@3817 | 3 PACKAGE="lockdis" |
pankso@3817 | 4 VERSION="1.0" |
pankso@3817 | 5 CATEGORY="x-window" |
pankso@3817 | 6 SHORT_DESC="Simple screen locker." |
pankso@3817 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15379 | 8 LICENSE="GPL3" |
pankso@3817 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@3817 | 10 WEB_SITE="http://lockdis.sourceforge.net/" |
pankso@3817 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pankso@3817 | 12 |
pascal@15379 | 13 DEPENDS="xorg-libX11 xorg-libXau xorg-libXpm xorg-libXdmcp" |
pascal@15379 | 14 |
pankso@3817 | 15 # Rules to configure and make the package. |
pankso@3817 | 16 compile_rules() |
pankso@3817 | 17 { |
pankso@3817 | 18 cd $src |
pankso@3817 | 19 ./configure \ |
pankso@3817 | 20 --prefix=/usr \ |
pankso@3817 | 21 --infodir=/usr/share/info \ |
pankso@3817 | 22 --mandir=/usr/share/man \ |
pankso@3817 | 23 $CONFIGURE_ARGS && |
pascal@15379 | 24 make && make DESTDIR=$DESTDIR install |
pankso@3817 | 25 } |
pankso@3817 | 26 |
pankso@3817 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@3817 | 28 genpkg_rules() |
pankso@3817 | 29 { |
pankso@3817 | 30 mkdir -p $fs/usr |
pascal@15379 | 31 cp -a $install/usr/bin $fs/usr |
pankso@3817 | 32 } |
pankso@3817 | 33 |