wok annotate libwnck3/receipt @ rev 19294

sane-backends, scons, scrot, shell-fm, smake, soundtouch, wireless_tools: fix man or doc path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 06 16:30:34 2016 +0200 (2016-07-06)
parents
children 11b336b5763f
rev   line source
al@18939 1 # SliTaz package receipt.
al@18939 2
al@18939 3 PACKAGE="libwnck3"
al@18939 4 VERSION="3.14.1"
al@18939 5 CATEGORY="x-window"
al@18939 6 SHORT_DESC="Window Navigator Construction Kit (GTK+3)"
al@18939 7 MAINTAINER="al.bobylev@gmail.com"
al@18939 8 LICENSE="LGPL2"
al@18939 9 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@18939 10 WEB_SITE="http://www.gnome.org/"
al@18939 11 WGET_URL="$GNOME_MIRROR/libwnck/${VERSION%.*}/libwnck-$VERSION.tar.xz"
al@18939 12
al@18939 13 DEPENDS="expat gtk+ startup-notification xorg-libICE xorg-libSM xorg-libX11 \
al@18939 14 xorg-libXau xorg-libXcomposite xorg-libXcursor xorg-libXdmcp xorg-libXext \
al@18939 15 xorg-libXfixes xorg-libXinerama xorg-libXrandr xorg-libXrender xorg-libXdamage"
al@18939 16 BUILD_DEPENDS="startup-notification-dev gtk+3-dev gobject-introspection-dev"
al@18939 17
al@18939 18 # Rules to configure and make the package.
al@18939 19 compile_rules()
al@18939 20 {
al@18939 21 ./configure \
al@18939 22 $CONFIGURE_ARGS &&
al@18939 23 make &&
al@18939 24 make DESTDIR=$install install
al@18939 25 }
al@18939 26
al@18939 27 # Rules to gen a SliTaz package suitable for Tazpkg.
al@18939 28 genpkg_rules()
al@18939 29 {
al@18939 30 mkdir -p $fs/usr/lib
al@18939 31 cp -a $install/usr/bin $fs/usr
al@18939 32 cp -a $install/usr/lib/*.so* $fs/usr/lib
al@18939 33 cp -a $install/usr/lib/girepository-1.0 $fs/usr/lib
al@18939 34 }