wok view xorg-xmessage/receipt @ rev 9747

Up: mpfre-dev to 3.0.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue May 10 11:42:55 2011 +0000 (2011-05-10)
parents bfa0622138b5
children baad5810ddc5
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xmessage"
4 VERSION="1.0.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Display a message or query in a window."
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="xorg-libXaw"
9 BUILD_DEPENDS="xorg-libXaw-dev"
10 SOURCE="xmessage"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
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 --prefix=/usr --sysconfdir=/etc \
20 --mandir=/usr/share/man --localstatedir=/var \
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 }