wok-next view xcb-util-cursor/receipt @ rev 19741

Many random packages update/upgrade.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jun 05 16:48:55 2017 +0300 (2017-06-05)
parents 1a86cb99cbbf
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="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="other"
9 WEB_SITE="https://xcb.freedesktop.org/"
10 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="https://xcb.freedesktop.org/dist/$TARBALL"
15 BUILD_DEPENDS="libxcb-dev xcb-util-dev xcb-util-renderutil-dev \
16 xcb-util-image-dev"
17 SPLIT="xcb-util-cursor-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --disable-static \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 case $PACKAGE in
32 xcb-util-cursor)
33 copy @std
34 DEPENDS="libxcb xcb-util-renderutil xcb-util-image"
35 ;;
36 *-dev) copy @dev;;
37 esac
38 }