wok view compiz-plugins-main/receipt @ rev 23234

updated net-snmp and net-snmp-dev (5.6.1 -> 5.8)
author Hans-G?nter Theisgen
date Tue Mar 24 14:26:07 2020 +0100 (2020-03-24)
parents ae335becd41b
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="compiz-plugins-main"
4 VERSION="0.8.14"
5 CATEGORY="x-window"
6 SHORT_DESC="Compiz main plugins."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/compiz-reloaded"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$WEB_SITE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
14 DEPENDS="compiz-core librsvg xorg-libX11"
15 BUILD_DEPENDS="compiz-bcop compiz-core-dev compiz-libcompizconfig
16 compiz-libcompizconfig-dev file gtk+-dev intltool libnotify-dev
17 librsvg-dev libtool libxslt-dev mesa-dev startup-notification-dev
18 util-linux-getopt util-linux-uuid-dev xcb-util-dev xorg-dev "
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --prefix=/usr \
25 --sysconfdir=/etc &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 mkdir -p $fs/usr/share/locale
36 cp -a $install/usr/lib/compiz $fs/usr/lib
37 cp -a $install/usr/share/compiz $fs/usr/share
39 # Set list of wanted locales in LOCALE_PACK
40 . $WOK/slitaz-i18n/stuff/locale-pack.conf
42 # Copy message files in wanted languages, if available
43 for locale in $LOCALE_PACK
44 do
45 [ -d $install/usr/share/locale/$locale ] || continue
46 cp -a $install/usr/share/locale/$locale $fs/usr/share/locale
47 done
49 cd $fs/usr/lib/compiz; rm -f *.a *.la
50 }