wok view openmotif/receipt @ rev 22219

updated xorg-libXmu and xorg-libXmu-dev (1.1.1 -> 1.1.3)
author Hans-G?nter Theisgen
date Mon Nov 11 16:47:53 2019 +0100 (2019-11-11)
parents 9eb4a7f42423
children 080c1dff8494
line source
1 # SliTaz package receipt.
3 PACKAGE="openmotif"
4 VERSION="2.3.8"
5 CATEGORY="development"
6 SHORT_DESC="Source code version of Motif under a public license."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL 2.1"
9 WEB_SITE="http://www.opengroup.org/openmotif/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/motif/motif-$VERSION.tar.gz"
14 DEPENDS="expat fontconfig freetype jpeg libpng xorg xorg-libXft xorg-libXp"
15 BUILD_DEPENDS="bison expat-dev flex fontconfig-dev freetype-dev jpeg-dev \
16 libpng-dev libxml2-dev util-linux-uuid-dev xorg-dev-proto xorg-libSM-dev \
17 xorg-libX11-dev xorg-libXft-dev xorg-libXmu xorg-libXmu-dev xorg-libXp \
18 xorg-libXrender-dev xorg-libXt-dev xorg-printproto xorg-xbitmaps \
19 xorg-xextproto xorg-xproto"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 ./configure \
25 --prefix=/usr \
26 --infodir=/usr/share/info \
27 --mandir=/usr/share/man \
28 $CONFIGURE_ARGS &&
29 make -j 1 &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib
38 cp -a $install/usr/bin $fs/usr
39 rm -f $fs/usr/bin/uil
41 cp -a $install/usr/lib/*.so* $fs/usr/lib
42 cp -a $install/usr/lib/X11 $fs/usr/lib
43 }