wok-current view libxkbcommon/receipt @ rev 20130
Up slitaz-boot-scripts (446)
| author | Richard Dunbar <mojo@slitaz.org> | 
|---|---|
| date | Fri Oct 27 12:29:47 2017 -0400 (2017-10-27) | 
| parents | |
| children | 6e8b1bcb30e2 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="libxkbcommon"
     4 VERSION="0.4.1"
     5 CATEGORY="x-window"
     6 SHORT_DESC="Keyboard handling library using XKB data."
     7 MAINTAINER="pankso@slitaz.org"
     8 LICENSE="custom"
     9 TARBALL="$PACKAGE-$VERSION.tar.xz"
    10 WEB_SITE="http://xkbcommon.org"
    11 WGET_URL="http://xkbcommon.org/download/$TARBALL"
    13 DEPENDS="xorg-xkeyboard-config libxcb"
    14 BUILD_DEPENDS="libxcb-dev xorg-util-macros xorg-xkeyboard-config-dev bison"
    16 # Rules to configure and make the package.
    17 compile_rules()
    18 {
    19 	./configure \
    20 		--with-xkb-config-root=/usr/share/X11/xkb \
    21 		$CONFIGURE_ARGS &&
    22 	make && make install
    23 }
    25 # Rules to gen a SliTaz package suitable for Tazpkg.
    26 genpkg_rules()
    27 {
    28 	mkdir -p $fs/usr/lib
    29 	cp -a $install/usr/lib/*.so* $fs/usr/lib
    30 }