wok view libgnomeui/receipt @ rev 21034

updated help2man (1.40.12 -> 1.47.8)
author Hans-G?nter Theisgen
date Mon Mar 11 13:26:42 2019 +0100 (2019-03-11)
parents 4904e3d374a9
children 6831608a1b2a
line source
1 # SliTaz package receipt.
3 PACKAGE="libgnomeui"
4 VERSION="2.24.5"
5 CATEGORY="x-window"
6 SHORT_DESC="This is the gui parts of what was previously gnome-libs"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://www.gnome.org"
12 DEPENDS="libgnome libgnomecanvas libglade libbonoboui gnome-keyring"
13 BUILD_DEPENDS="libgnome-dev libgnomecanvas-dev gnome-keyring \
14 libgnome-keyring-dev libbonoboui-dev util-linux-uuid-dev libgcrypt-dev \
15 dbus-glib-dev esound-dev audiofile-dev libglade-dev intltool"
16 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 --libexecdir=/usr/lib/$PACKAGE \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib $fs/usr/share
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 cp -a $install/usr/lib/libglade $fs/usr/lib
35 cp -a $install/usr/share/pixmaps $fs/usr/share
36 find $fs/usr/lib -name *.*a -exec rm -f {} \;
37 }