wok-current view xorg-xclock/receipt @ rev 929
Up: iptables (1.4.1.1)
| author | Christophe Lincoln <pankso@slitaz.org> | 
|---|---|
| date | Thu Jun 19 11:52:34 2008 +0200 (2008-06-19) | 
| parents | |
| children | 14320228765e | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="xorg-xclock"
     4 VERSION="1.0.3"
     5 CATEGORY="x-window"
     6 SHORT_DESC="Simple clock for X."
     7 MAINTAINER="pankso@slitaz.org"
     8 DEPENDS="xorg xorg-libxkbfile"
     9 SOURCE="xclock"
    10 TARBALL="$SOURCE-$VERSION.tar.gz"
    11 WEB_SITE="http://www.x.org/"
    12 WGET_URL="$XORG_MIRROR/app/$TARBALL"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17 	cd $src
    18 	./configure \
    19 		--prefix=/usr \
    20 		--mandir=/usr/share/man \
    21 		$CONFIGURE_ARGS
    22 	make
    23 	make DESTDIR=$PWD/_pkg install
    24 }
    26 # Rules to gen a SliTaz package suitable for Tazpkg.
    27 genpkg_rules()
    28 {
    29 	mkdir -p $fs/usr/share
    30 	cp -a $_pkg/usr/bin $fs/usr
    31 	cp -a $_pkg/usr/share/X11 $fs/usr/share
    32 }