wok-next annotate 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
rev   line source
al@19805 1 # SliTaz package receipt v2.
al@19805 2
al@19805 3 PACKAGE="xorg-xcb-util-image"
al@19805 4 VERSION="0.4.0"
al@19805 5 CATEGORY="x-window"
al@19805 6 SHORT_DESC="Utility libraries for XC Binding - Port of Xlib's XImage and \
al@19805 7 XShmImage functions"
al@19805 8 MAINTAINER="slaxemulator@gmail.com"
al@19805 9 LICENSE="MIT"
al@19805 10 WEB_SITE="https://xcb.freedesktop.org/"
al@20443 11 LFS="http://www.linuxfromscratch.org/blfs/view/stable/x/xcb-util-image.html"
al@19805 12
al@19805 13 TARBALL="xcb-util-image-$VERSION.tar.bz2"
al@19805 14 WGET_URL="$XORG_MIRROR/xcb/$TARBALL"
al@19805 15
al@19805 16 BUILD_DEPENDS="xorg-libxcb-dev xorg-xcb-util-dev xorg-util-macros"
al@19805 17 SPLIT="xorg-xcb-util-image-dev"
al@19805 18
al@20443 19 compile_rules() {
al@20443 20 fix ld
al@19805 21 ./configure \
al@19805 22 --sysconfdir=/etc \
al@19805 23 --localstatedir=/var \
al@19805 24 $CONFIGURE_ARGS &&
al@20443 25 fix libtool &&
al@19805 26 make &&
al@19805 27 make install
al@19805 28 }
al@19805 29
al@20443 30 genpkg_rules() {
al@19805 31 case $PACKAGE in
al@19805 32 *-image)
al@19805 33 copy @std
al@19805 34 DEPENDS="xorg-libxcb xorg-xcb-util"
al@19805 35 PROVIDE="xcb-util-image"
al@19805 36 ;;
al@19805 37 *-dev)
al@19805 38 copy @dev
al@20443 39 DEPENDS="xorg-xcb-util-image xorg-libxcb-dev"
al@19805 40 PROVIDE="xcb-util-image-dev"
al@19805 41 ;;
al@19805 42 esac
al@19805 43 }