wok view openmotif/receipt @ rev 3987

Add openmotif
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 29 17:05:43 2009 +0200 (2009-08-29)
parents
children 1ab994990629
line source
1 # SliTaz package receipt.
3 PACKAGE="openmotif"
4 VERSION="2.3.2"
5 CATEGORY="non-free"
6 SHORT_DESC="source code version of Motif under a public license."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.motifzone.org/"
10 WGET_URL="${WEB_SITE}files/public_downloads/$PACKAGE/${VERSION%.*}/$VERSION/$TARBALL"
11 DEPENDS="xorg fontconfig expat freetype jpeg libpng"
12 /usr/lib/libXp.so.6
13 /usr/lib/libXft.so.2
14 BUILD_DEPENDS="xorg-dev-proto xorg-libXmu xorg-libXft-dev xorg-libXrender-dev \
15 xorg-xbitmaps fontconfig-dev freetype-dev jpeg-dev libpng-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 rm -f $fs/usr/bin/uil
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/lib/X11 $fs/usr/lib
36 }