wok-undigest view libmatewnck/receipt @ rev 1223

copied libxext recipe from wok-next
author Hans-G?nter Theisgen
date Fri Nov 15 17:38:29 2019 +0100 (2019-11-15)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="libmatewnck"
4 VERSION="1.4.0"
5 CATEGORY="x-window"
6 SHORT_DESC="MATE Desktop WNCK library."
7 MAINTAINER="pankso@slitaz.org"
8 WEB_SITE="http://mate-desktop.org"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WGET_URL="http://pub.mate-desktop.org/releases/1.4/$TARBALL"
12 DEPENDS="glib gtk+ gobject-introspection libxml2"
13 BUILD_DEPENDS="automake autoconf libtool gtk-doc mate-common glib-dev \
14 gtk+-dev gobject-introspection-dev libxml2-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./autogen.sh \
21 --sysconfdir=/etc \
22 --localstatedir=/var \
23 --disable-static \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib $fs/usr/share
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 cp -a $install/usr/lib/girepository-1.0 $fs/usr/lib
35 cp -a $install/usr/share/gir-1.0 $fs/usr/share
36 }