wok rev 22052
updated tslib and tslib-dev (1.0 -> 1.21)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Oct 22 17:41:52 2019 +0100 (2019-10-22) |
parents | e0a7c1d94e80 |
children | 1a95dca96d7f |
files | tslib-dev/receipt tslib/receipt |
line diff
1.1 --- a/tslib-dev/receipt Tue Oct 22 16:30:18 2019 +0100 1.2 +++ b/tslib-dev/receipt Tue Oct 22 17:41:52 2019 +0100 1.3 @@ -1,23 +1,25 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="tslib-dev" 1.7 -VERSION="1.0" 1.8 +VERSION="1.21" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Abstraction layer for touchscreen panel events, development files." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="LGPL2" 1.13 -WEB_SITE="https://github.com/kergoth/tslib" 1.14 -WANTED="tslib" 1.15 -HOST_ARCH="i486 arm" 1.16 +WEB_SITE="http://www.tslib.org/" 1.17 1.18 DEPENDS="pkg-config" 1.19 +WANTED="tslib" 1.20 + 1.21 +HOST_ARCH="i486 arm" 1.22 1.23 # Rules to gen a SliTaz package suitable for Tazpkg. 1.24 genpkg_rules() 1.25 { 1.26 mkdir -p $fs/usr/lib/ts 1.27 - cp -a $install/usr/lib/ts/*a $fs/usr/lib/ts 1.28 - cp -a $install/usr/lib/*a $fs/usr/lib 1.29 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.30 - cp -a $install/usr/include $fs/usr 1.31 + 1.32 + cp -a $install/usr/lib/ts/*a $fs/usr/lib/ts 1.33 + cp -a $install/usr/lib/*a $fs/usr/lib 1.34 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.35 + cp -a $install/usr/include $fs/usr 1.36 }
2.1 --- a/tslib/receipt Tue Oct 22 16:30:18 2019 +0100 2.2 +++ b/tslib/receipt Tue Oct 22 17:41:52 2019 +0100 2.3 @@ -1,18 +1,20 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="tslib" 2.7 -VERSION="1.0" 2.8 +VERSION="1.21" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Abstraction layer for touchscreen panel events." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="LGPL2" 2.13 -WEB_SITE="https://github.com/kergoth/tslib" 2.14 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.15 -WGET_URL="http://download.berlios.de/$PACKAGE/$TARBALL" 2.16 +WEB_SITE="http://www.tslib.org/" 2.17 + 2.18 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.19 +WGET_URL="https://github.com/libts/$PACKAGE/archive/$VERSION.tar.gz" 2.20 + 2.21 +BUILD_DEPENDS="autoconf automake libtool" 2.22 + 2.23 HOST_ARCH="i486 arm" 2.24 2.25 -BUILD_DEPENDS="libtool automake autoconf" 2.26 - 2.27 # Handle cross compilation 2.28 case "$ARCH" in 2.29 arm*) export ac_cv_func_malloc_0_nonnull=yes ;; 2.30 @@ -21,19 +23,21 @@ 2.31 # Rules to configure and make the package. 2.32 compile_rules() 2.33 { 2.34 - ./autogen.sh 2.35 - ./configure \ 2.36 - --sysconfdir=/etc \ 2.37 + ./autogen.sh && 2.38 + ./configure \ 2.39 + --sysconfdir=/etc \ 2.40 $CONFIGURE_ARGS && 2.41 - make && make install 2.42 + make && 2.43 + make install 2.44 } 2.45 2.46 # Rules to gen a SliTaz package suitable for Tazpkg. 2.47 genpkg_rules() 2.48 { 2.49 mkdir -p $fs/usr/lib/ts 2.50 - cp -a $install/usr/lib/ts/*.so* $fs/usr/lib/ts 2.51 - cp -a $install/usr/lib/*.so* $fs/usr/lib 2.52 - cp -a $install/usr/bin $fs/usr 2.53 - cp -a $install/etc $fs 2.54 + 2.55 + cp -a $install/usr/lib/ts/*.so* $fs/usr/lib/ts 2.56 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.57 + cp -a $install/usr/bin $fs/usr 2.58 + cp -a $install/etc $fs 2.59 }