wok annotate libxklavier/receipt @ 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 68d68791ced5
children 48177da02fe1
rev   line source
al@14225 1 # SliTaz package receipt.
al@14225 2
al@14225 3 PACKAGE="libxklavier"
Hans-G?nter@21345 4 VERSION="5.4"
al@14225 5 CATEGORY="system-tools"
Hans-G?nter@21345 6 SHORT_DESC="Library providing high-level API for XKB."
al@14225 7 MAINTAINER="al.bobylev@gmail.com"
al@14225 8 LICENSE="GPL2"
Hans-G?nter@21345 9 WEB_SITE="https://freedesktop.org/wiki/Software/LibXklavier/"
Hans-G?nter@21345 10
Hans-G?nter@21345 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
Hans-G?nter@21345 12 WGET_URL="https://cgit.freedesktop.org/$PACKAGE/snapshot/$TARBALL"
al@14225 13
al@14225 14 DEPENDS="glib xorg-libXi xorg-libxkbfile"
Hans-G?nter@21345 15 BUILD_DEPENDS="automake glib-dev iso-codes libxml2-dev xorg-xkbcomp"
al@14225 16
al@14225 17 # Rules to configure and make the package.
al@14225 18 compile_rules()
al@14225 19 {
Hans-G?nter@21345 20 ./autogen.sh &&
Hans-G?nter@21345 21 ./configure \
Hans-G?nter@21345 22 --disable-static \
Hans-G?nter@21345 23 --disable-gtk-doc \
Hans-G?nter@21345 24 --enable-xkb-support \
Hans-G?nter@21345 25 --enable-xmodmap-support\
al@14225 26 $CONFIGURE_ARGS &&
Hans-G?nter@21345 27 make -j 1 &&
al@14225 28 make install
al@14225 29 }
al@14225 30
al@14225 31 # Rules to gen a SliTaz package suitable for Tazpkg.
al@14225 32 genpkg_rules()
al@14225 33 {
al@14225 34 mkdir -p $fs/usr/lib
al@14225 35 cp -a $install/usr/lib/*.so* $fs/usr/lib
al@14225 36 }