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

Packages with tag "Xfce": fix (b)deps
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 14 17:14:32 2018 +0200 (2018-03-14)
parents 0e7893ac206d
children 757d032c55c7
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 LFS="http://www.linuxfromscratch.org/blfs/view/stable/x/xcb-util-cursor.html"
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"
19 compile_rules() {
20 fix ld
21 ./configure \
22 --sysconfdir=/etc \
23 --localstatedir=/var \
24 $CONFIGURE_ARGS &&
25 fix libtool &&
26 make &&
27 make install
28 }
30 genpkg_rules() {
31 case $PACKAGE in
32 *-xcb-util-cursor)
33 copy @std
34 DEPENDS="xorg-libxcb xorg-xcb-util-image xorg-xcb-util-renderutil"
35 ;;
36 *-dev)
37 copy @dev
38 DEPENDS="xorg-xcb-util-cursor \
39 xorg-libxcb-dev xorg-xcb-util-image-dev xorg-xcb-util-renderutil-dev"
40 ;;
41 esac
42 }