wok rev 21345
updated libxklavier and libxklavier-dev (5.0 -> 5.4)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Apr 20 15:43:51 2019 +0100 (2019-04-20) |
parents | 7d9952286cb0 |
children | 48177da02fe1 |
files | libxklavier-dev/receipt libxklavier/receipt |
line diff
1.1 --- a/libxklavier-dev/receipt Sat Apr 20 15:23:09 2019 +0100 1.2 +++ b/libxklavier-dev/receipt Sat Apr 20 15:43:51 2019 +0100 1.3 @@ -1,21 +1,22 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libxklavier-dev" 1.7 -VERSION="5.0" 1.8 +VERSION="5.4" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Development files for libxklavier" 1.11 +SHORT_DESC="Development files for libxklavier." 1.12 MAINTAINER="al.bobylev@gmail.com" 1.13 LICENSE="GPL2" 1.14 -WEB_SITE="http://freedesktop.org/wiki/Software/LibXklavier" 1.15 +WEB_SITE="https://freedesktop.org/wiki/Software/LibXklavier/" 1.16 1.17 +DEPENDS="glib-dev libxklavier libxml2-dev pkg-config" 1.18 WANTED="libxklavier" 1.19 -DEPENDS="libxklavier glib-dev libxml2-dev pkg-config" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 mkdir -p $fs/usr/lib 1.25 - cp -a $install/usr/include $fs/usr 1.26 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.27 - cp -a $install/usr/lib/*.la $fs/usr/lib 1.28 + 1.29 + cp -a $install/usr/include $fs/usr 1.30 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.31 + cp -a $install/usr/lib/*.la $fs/usr/lib 1.32 }
2.1 --- a/libxklavier/receipt Sat Apr 20 15:23:09 2019 +0100 2.2 +++ b/libxklavier/receipt Sat Apr 20 15:43:51 2019 +0100 2.3 @@ -1,28 +1,30 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libxklavier" 2.7 -VERSION="5.0" 2.8 +VERSION="5.4" 2.9 CATEGORY="system-tools" 2.10 -SHORT_DESC="Library providing high-level API for XKB" 2.11 +SHORT_DESC="Library providing high-level API for XKB." 2.12 MAINTAINER="al.bobylev@gmail.com" 2.13 LICENSE="GPL2" 2.14 -WEB_SITE="http://freedesktop.org/wiki/Software/LibXklavier" 2.15 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.16 -WGET_URL="$SF_MIRROR/gswitchit/libxklavier/$VERSION/$TARBALL" 2.17 +WEB_SITE="https://freedesktop.org/wiki/Software/LibXklavier/" 2.18 + 2.19 +TARBALL="$PACKAGE-$VERSION.tar.xz" 2.20 +WGET_URL="https://cgit.freedesktop.org/$PACKAGE/snapshot/$TARBALL" 2.21 2.22 DEPENDS="glib xorg-libXi xorg-libxkbfile" 2.23 -BUILD_DEPENDS="libxml2-dev glib-dev xorg-xkbcomp iso-codes" 2.24 +BUILD_DEPENDS="automake glib-dev iso-codes libxml2-dev xorg-xkbcomp" 2.25 2.26 # Rules to configure and make the package. 2.27 compile_rules() 2.28 { 2.29 - ./configure \ 2.30 - --disable-static \ 2.31 - --disable-gtk-doc \ 2.32 - --enable-xkb-support \ 2.33 - --enable-xmodmap-support \ 2.34 + ./autogen.sh && 2.35 + ./configure \ 2.36 + --disable-static \ 2.37 + --disable-gtk-doc \ 2.38 + --enable-xkb-support \ 2.39 + --enable-xmodmap-support\ 2.40 $CONFIGURE_ARGS && 2.41 - make && 2.42 + make -j 1 && 2.43 make install 2.44 } 2.45