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