wok view lesstif/receipt @ rev 18394

mtpaint: disable libopenjpeg & libjasper
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Sat Sep 19 01:58:35 2015 +0200 (2015-09-19)
parents 8bdba6bcdf42
children 86790a278e70
line source
1 # SliTaz package receipt.
3 PACKAGE="lesstif"
4 VERSION="0.95.2"
5 CATEGORY="x-window"
6 SHORT_DESC="An LGPL clone of Motif, which is a set of GUI widgets."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://sourceforge.net/projects/lesstif/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 #HOST_ARCH="arm i486"
14 DEPENDS="glibc-base xorg-libICE xorg-libSM xorg-libX11 xorg-libXau \
15 xorg-libXdmcp xorg-libXext xorg-libXt util-linux-uuid freetype xorg-libXp"
16 BUILD_DEPENDS="xorg-xextproto util-linux-uuid-dev automake"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 --includedir=/usr/include \
26 $CONFIGURE_ARGS &&
27 make &&
28 make -j 1 DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 cp -a $install/usr/lib/LessTif $fs/usr/lib
37 cp -a $install/usr/lib/X11 $fs/usr/lib
38 cp -a $install/usr/bin $fs/usr
39 }