wok view xorg-xclock/receipt @ rev 3181

Up: spandsp (0.0.5)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 26 10:54:55 2009 +0200 (2009-05-26)
parents 14320228765e
children 07ae722ec64e
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 expat fontconfig freetype xorg-libXft zlib"
9 BUILD_DEPENDS="xorg-dev xorg-libXft-dev"
10 SOURCE="xclock"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/app/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share/X11 $fs/usr/share
33 }