wok view libxklavier/receipt @ rev 23933

dar: inserted libdir=/lib
author Hans-G?nter Theisgen
date Mon Sep 07 13:19:26 2020 +0100 (2020-09-07)
parents e910b4f3fbf9
children 34e801e0eb52
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 file glib-dev gtk-doc iso-codes \
16 xz gettext-tools libtool libxml2-dev xorg-xkbcomp"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./autogen.sh &&
22 ./configure \
23 --disable-static \
24 --disable-gtk-doc \
25 --enable-xkb-support \
26 --enable-xmodmap-support\
27 $CONFIGURE_ARGS &&
28 make -j 1 &&
29 make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }