wok-next view xorg-xcb-util-image/receipt @ rev 20443

The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Feb 24 16:17:33 2018 +0200 (2018-02-24)
parents ea3c4b76ea5d
children 034d94e9a1e4
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xorg-xcb-util-image"
4 VERSION="0.4.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Utility libraries for XC Binding - Port of Xlib's XImage and \
7 XShmImage functions"
8 MAINTAINER="slaxemulator@gmail.com"
9 LICENSE="MIT"
10 WEB_SITE="https://xcb.freedesktop.org/"
11 LFS="http://www.linuxfromscratch.org/blfs/view/stable/x/xcb-util-image.html"
13 TARBALL="xcb-util-image-$VERSION.tar.bz2"
14 WGET_URL="$XORG_MIRROR/xcb/$TARBALL"
16 BUILD_DEPENDS="xorg-libxcb-dev xorg-xcb-util-dev xorg-util-macros"
17 SPLIT="xorg-xcb-util-image-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 *-image)
33 copy @std
34 DEPENDS="xorg-libxcb xorg-xcb-util"
35 PROVIDE="xcb-util-image"
36 ;;
37 *-dev)
38 copy @dev
39 DEPENDS="xorg-xcb-util-image xorg-libxcb-dev"
40 PROVIDE="xcb-util-image-dev"
41 ;;
42 esac
43 }