wok-next view compiz-core/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents d958fec46c9f
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="compiz-core"
4 VERSION="0.8.12.3"
5 CATEGORY="x-window"
6 SHORT_DESC="OpenGL compositing manager for 3D effect"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="MIT GPL LGPL"
9 WEB_SITE="https://github.com/compiz-reloaded"
10 REPOLOGY="compiz"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$WEB_SITE/compiz/releases/download/v$VERSION/compiz-$VERSION.tar.xz"
15 BUILD_DEPENDS="xorg-dev intltool librsvg-dev libxslt-dev pango-dev libtool \
16 startup-notification-dev mesa-dev file dbus-dev dbus-glib-dev cairo-dev \
17 util-linux-uuid-dev expat-dev xorg-libxshmfence-dev glu-dev \
18 xorg-xcb-util-dev libjpeg-turbo-dev"
19 SPLIT="$PACKAGE-dev"
21 compile_rules() {
22 ./configure \
23 --enable-shared \
24 --enable-librsvg \
25 --enable-dbus \
26 --enable-dbus-glib \
27 --enable-glib \
28 --disable-static \
29 --disable-inotify &&
30 fix libtool &&
31 make &&
32 make install || return 1
34 sed 's|bash|sh|' -i $install/usr/bin/compiz-decorator
35 }
37 genpkg_rules() {
38 case $PACKAGE in
39 compiz-core)
40 copy @std
41 DEPENDS="librsvg libxslt mesa glu dbus dbus-glib \
42 startup-notification compiz-bcop compiz-libcompizconfig"
43 ;;
44 *-dev)
45 copy @dev
46 ;;
47 esac
48 }