wok view libxkbcommon/receipt @ rev 21920

Add pcem
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 05 16:15:48 2019 +0200 (2019-10-05)
parents 6e8b1bcb30e2
children ede1d184d5c5
line source
1 # SliTaz package receipt.
3 PACKAGE="libxkbcommon"
4 VERSION="0.8.4"
5 CATEGORY="x-window"
6 SHORT_DESC="Keyboard handling library using XKB data."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://xkbcommon.org"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://xkbcommon.org/download/$TARBALL"
14 DEPENDS="libxcb xorg-xkeyboard-config"
15 BUILD_DEPENDS="bison libxcb-dev xorg-util-macros xorg-xkeyboard-config-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --with-xkb-config-root=/usr/share/X11/xkb \
22 $CONFIGURE_ARGS &&
23 make -j 1 &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }