wok view xcb-util-cursor/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents
children 17091bc7c301
line source
1 # SliTaz package receipt.
3 PACKAGE="xcb-util-cursor"
4 VERSION="0.1.3"
5 CATEGORY="x-window"
6 TAGS="Xorg"
7 SHORT_DESC="XCB cursor library."
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="https://xcb.freedesktop.org/"
11 LFS="http://www.linuxfromscratch.org/blfs/view/svn/x/xcb-util-cursor.html"
13 TARBALL="$PACKAGE-$VERSION.tar.bz2"
14 WGET_URL="$XORG_MIRROR/xcb/$TARBALL"
15 TARBALL_SHA1="26562eb6d4151307f7b6a53453d360ecfc0563ac"
17 DEPENDS="libxcb xcb-util-image xcb-util-renderutil"
18 BUILD_DEPENDS="libxcb-dev xcb-util-dev xcb-util-image-dev xcb-util-renderutil-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --disable-static \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }