# HG changeset patch # User Hans-G?nter Theisgen # Date 1571762512 -3600 # Node ID 0d08d15e81f866057786735ead874b49cfc71dec # Parent e0a7c1d94e80f1ec611b0d56c3de0bf9a4af7d21 updated tslib and tslib-dev (1.0 -> 1.21) diff -r e0a7c1d94e80 -r 0d08d15e81f8 tslib-dev/receipt --- a/tslib-dev/receipt Tue Oct 22 16:30:18 2019 +0100 +++ b/tslib-dev/receipt Tue Oct 22 17:41:52 2019 +0100 @@ -1,23 +1,25 @@ # SliTaz package receipt. PACKAGE="tslib-dev" -VERSION="1.0" +VERSION="1.21" CATEGORY="development" SHORT_DESC="Abstraction layer for touchscreen panel events, development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL2" -WEB_SITE="https://github.com/kergoth/tslib" -WANTED="tslib" -HOST_ARCH="i486 arm" +WEB_SITE="http://www.tslib.org/" DEPENDS="pkg-config" +WANTED="tslib" + +HOST_ARCH="i486 arm" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib/ts - cp -a $install/usr/lib/ts/*a $fs/usr/lib/ts - cp -a $install/usr/lib/*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + + cp -a $install/usr/lib/ts/*a $fs/usr/lib/ts + cp -a $install/usr/lib/*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr } diff -r e0a7c1d94e80 -r 0d08d15e81f8 tslib/receipt --- a/tslib/receipt Tue Oct 22 16:30:18 2019 +0100 +++ b/tslib/receipt Tue Oct 22 17:41:52 2019 +0100 @@ -1,18 +1,20 @@ # SliTaz package receipt. PACKAGE="tslib" -VERSION="1.0" +VERSION="1.21" CATEGORY="development" SHORT_DESC="Abstraction layer for touchscreen panel events." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL2" -WEB_SITE="https://github.com/kergoth/tslib" -TARBALL="$PACKAGE-$VERSION.tar.bz2" -WGET_URL="http://download.berlios.de/$PACKAGE/$TARBALL" +WEB_SITE="http://www.tslib.org/" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/libts/$PACKAGE/archive/$VERSION.tar.gz" + +BUILD_DEPENDS="autoconf automake libtool" + HOST_ARCH="i486 arm" -BUILD_DEPENDS="libtool automake autoconf" - # Handle cross compilation case "$ARCH" in arm*) export ac_cv_func_malloc_0_nonnull=yes ;; @@ -21,19 +23,21 @@ # Rules to configure and make the package. compile_rules() { - ./autogen.sh - ./configure \ - --sysconfdir=/etc \ + ./autogen.sh && + ./configure \ + --sysconfdir=/etc \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib/ts - cp -a $install/usr/lib/ts/*.so* $fs/usr/lib/ts - cp -a $install/usr/lib/*.so* $fs/usr/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/etc $fs + + cp -a $install/usr/lib/ts/*.so* $fs/usr/lib/ts + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/bin $fs/usr + cp -a $install/etc $fs }