wok-current diff libxcb/receipt @ rev 23468
updated python-caldav (0.1.12 -> 0.6.2)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Apr 05 09:14:31 2020 +0100 (2020-04-05) |
parents | a78610b2eb47 |
children | 8b1267de9505 |
line diff
1.1 --- a/libxcb/receipt Mon Jan 21 12:26:11 2019 +0100 1.2 +++ b/libxcb/receipt Sun Apr 05 09:14:31 2020 +0100 1.3 @@ -1,20 +1,22 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libxcb" 1.7 -VERSION="1.10" 1.8 +VERSION="1.13.1" 1.9 ARM_VERSION="1.9.1" 1.10 CATEGORY="x-window" 1.11 -SHORT_DESC="A C binding to the X11 protocol" 1.12 +SHORT_DESC="A C binding to the X11 protocol." 1.13 MAINTAINER="pankso@slitaz.org" 1.14 LICENSE="other" 1.15 WEB_SITE="https://xcb.freedesktop.org/" 1.16 + 1.17 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.18 WGET_URL="${WEB_SITE}dist/$TARBALL" 1.19 -HOST_ARCH="i486 arm" 1.20 1.21 DEPENDS="glibc-base xorg-libXau xorg-libXdmcp" 1.22 -BUILD_DEPENDS="libxslt-dev xcb-proto xorg-libXau-dev xorg-libXdmcp-dev \ 1.23 -autoconf automake libtool" 1.24 +BUILD_DEPENDS="autoconf automake libtool libxslt-dev xcb-proto xorg-libXau-dev 1.25 + xorg-libXdmcp-dev" 1.26 + 1.27 +HOST_ARCH="i486 arm" 1.28 1.29 # Handle SliTaz arch 1.30 case "$SLITAZ_ARCH" in 1.31 @@ -36,11 +38,11 @@ 1.32 # http://www.linuxfromscratch.org/blfs/view/svn/x/libxcb.html 1.33 sed -i "s|pthread-stubs||" $src/configure.ac && 1.34 autoreconf -fi && 1.35 - ./configure \ 1.36 - --enable-xinput \ 1.37 - --enable-xkb \ 1.38 - --disable-build-docs \ 1.39 - --disable-static \ 1.40 + ./configure \ 1.41 + --enable-xinput \ 1.42 + --enable-xkb \ 1.43 + --disable-build-docs \ 1.44 + --disable-static \ 1.45 $CONFIGURE_ARGS && 1.46 make && 1.47 make DESTDIR=$DESTDIR install 1.48 @@ -49,10 +51,9 @@ 1.49 # Rules to gen a SliTaz package suitable for Tazpkg. 1.50 genpkg_rules() 1.51 { 1.52 - mkdir -p \ 1.53 - $fs/usr/lib \ 1.54 - $fs/usr/share/licenses 1.55 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.56 - cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 1.57 + mkdir -p $fs/usr/lib 1.58 + mkdir -p $fs/usr/share/licenses 1.59 + 1.60 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.61 + cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt 1.62 } 1.63 -