wok-next view compiz/receipt @ rev 21340

Up ipxe (1.20.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 21 08:52:35 2020 +0100 (2020-01-21)
parents 5669e8b3be70
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="compiz"
4 VERSION="0.8.14"
5 CATEGORY="x-window"
6 SHORT_DESC="OpenGL window and compositing manager"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="MIT GPL LGPL"
9 WEB_SITE="https://gitlab.com/compiz/compiz-core"
10 REPOLOGY="compiz08"
12 TARBALL="compiz-core-v$VERSION.tar.bz2"
13 WGET_URL="https://gitlab.com/compiz/compiz-core/-/archive/v$VERSION/$TARBALL"
15 BUILD_DEPENDS="automake gettext-dev libtool intltool libx11-dev \
16 libxcomposite-dev libxext-dev libxfixes-dev libxdamage-dev \
17 libxrandr-dev libxi-dev libxinerama-dev libxcursor-dev \
18 libice-dev libsm-dev libxml2-dev startup-notification-dev libxslt \
19 libpng-dev libjpeg-turbo-dev glu-dev mesa-dev glib-dev dbus-dev libxml2-dev \
20 dbus-glib-dev fuse2-dev cairo-dev librsvg-dev \
21 libxrender-dev gtk3-dev libwnck3-dev marco-dev"
22 SPLIT="$PACKAGE-dev"
24 DEPENDS_std="atk libcairo dbus fuse2 gdk-pixbuf glib glu gtk3 libpng librsvg \
25 libwnck3 libxml2 marco mesa pango startup-notification libice libsm \
26 libx11 libxcomposite libxcursor libxdamage libxext \
27 libxfixes libxi libxinerama libxrandr libxrender"
28 DEPENDS_dev="compiz libxml2-dev startup-notification-dev libice-dev \
29 libsm-dev libx11-dev libxcomposite-dev libxcursor-dev \
30 libxdamage-dev libxext-dev libxfixes-dev libxi-dev \
31 libxinerama-dev libxrandr-dev libxrender-dev"
33 TAGS="compiz"
35 compile_rules() {
36 ./autogen.sh \
37 --disable-static \
38 --enable-menu-entries \
39 $CONFIGURE_ARGS &&
40 fix libtool &&
41 make &&
42 make install || return 1
44 # sed 's|bash|sh|' -i $install/usr/bin/compiz-decorator
45 }
47 genpkg_rules() {
48 case $PACKAGE in
49 compiz)
50 copy @std; DEPENDS="$DEPENDS_std"
51 PROVIDE="compiz-core"
52 ;;
53 *-dev)
54 copy @dev; DEPENDS="$DEPENDS_dev"
55 PROVIDE="compiz-core-dev"
56 ;;
57 esac
58 }