wok diff tslib/receipt @ rev 22470
updated activesupport (3.2.6 -> 6.0.2.1)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Dec 27 17:02:20 2019 +0100 (2019-12-27) |
parents | 8dd8bab3f0ca |
children | 5ea0ce1cecc0 |
line diff
1.1 --- a/tslib/receipt Thu Jan 24 14:51:04 2019 +0100 1.2 +++ b/tslib/receipt Fri Dec 27 17:02:20 2019 +0100 1.3 @@ -1,18 +1,20 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="tslib" 1.7 -VERSION="1.0" 1.8 +VERSION="1.21" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Abstraction layer for touchscreen panel events." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="LGPL2" 1.13 -WEB_SITE="https://github.com/kergoth/tslib" 1.14 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.15 -WGET_URL="http://download.berlios.de/$PACKAGE/$TARBALL" 1.16 +WEB_SITE="http://www.tslib.org/" 1.17 + 1.18 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.19 +WGET_URL="https://github.com/libts/$PACKAGE/archive/$VERSION.tar.gz" 1.20 + 1.21 +BUILD_DEPENDS="autoconf automake libtool" 1.22 + 1.23 HOST_ARCH="i486 arm" 1.24 1.25 -BUILD_DEPENDS="libtool automake autoconf" 1.26 - 1.27 # Handle cross compilation 1.28 case "$ARCH" in 1.29 arm*) export ac_cv_func_malloc_0_nonnull=yes ;; 1.30 @@ -21,19 +23,21 @@ 1.31 # Rules to configure and make the package. 1.32 compile_rules() 1.33 { 1.34 - ./autogen.sh 1.35 - ./configure \ 1.36 - --sysconfdir=/etc \ 1.37 + ./autogen.sh && 1.38 + ./configure \ 1.39 + --sysconfdir=/etc \ 1.40 $CONFIGURE_ARGS && 1.41 - make && make install 1.42 + make && 1.43 + make install 1.44 } 1.45 1.46 # Rules to gen a SliTaz package suitable for Tazpkg. 1.47 genpkg_rules() 1.48 { 1.49 mkdir -p $fs/usr/lib/ts 1.50 - cp -a $install/usr/lib/ts/*.so* $fs/usr/lib/ts 1.51 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.52 - cp -a $install/usr/bin $fs/usr 1.53 - cp -a $install/etc $fs 1.54 + 1.55 + cp -a $install/usr/lib/ts/*.so* $fs/usr/lib/ts 1.56 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.57 + cp -a $install/usr/bin $fs/usr 1.58 + cp -a $install/etc $fs 1.59 }