wok-next view xorg-xcb-util-cursor/receipt @ rev 19989

Up LXQt (WIP, to be continued...)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Oct 20 06:08:44 2017 +0300 (2017-10-20)
parents
children 0e7893ac206d
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xorg-xcb-util-cursor"
4 VERSION="0.1.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Module that implements the XCB cursor library"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="https://xcb.freedesktop.org/"
10 HOST_ARCH="i486 arm"
12 TARBALL="xcb-util-cursor-$VERSION.tar.bz2"
13 WGET_URL="$XORG_MIRROR/xcb/$TARBALL"
15 BUILD_DEPENDS="xorg-libxcb-dev xorg-xcb-util-dev xorg-xcb-util-renderutil-dev \
16 xorg-xcb-util-image-dev"
17 SPLIT="xorg-xcb-util-cursor-dev"
18 PKG_RULE="std-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --sysconfdir=/etc \
25 --localstatedir=/var \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 case $PACKAGE in
35 *-xcb-util-cursor)
36 copy @std
37 DEPENDS="xorg-libxcb xorg-xcb-util-image xorg-xcb-util-renderutil"
38 PROVIDE="xcb-util-cursor"
39 ;;
40 *-dev)
41 copy @dev
42 DEPENDS="xorg-xcb-util-cursor xorg-libXau-dev xorg-libXdmcp-dev \
43 xorg-libxcb-dev xorg-xcb-util-dev xorg-xcb-util-image-dev \
44 xorg-xcb-util-renderutil-dev"
45 PROVIDE="xcb-util-cursor-dev"
46 ;;
47 esac
48 }