wok-next view xorg-xmodmap/receipt @ rev 17573
Up: icu 54.1
| author | Alexander Medvedev <devl547@gmail.com> | 
|---|---|
| date | Sat Feb 07 21:10:31 2015 +0000 (2015-02-07) | 
| parents | c514cc4854d8 | 
| children | 0994d769f208 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="xorg-xmodmap"
     4 VERSION="1.0.5"
     5 CATEGORY="x-window"
     6 SHORT_DESC="X keyboard and mouse configuration utility."
     7 MAINTAINER="pankso@slitaz.org"
     8 LICENSE="MIT"
     9 SOURCE="xmodmap"
    10 TARBALL="$SOURCE-$VERSION.tar.bz2"
    11 WEB_SITE="http://www.x.org/"
    12 WGET_URL="$XORG_MIRROR/app/$TARBALL"
    14 DEPENDS="xorg-libX11"
    15 BUILD_DEPENDS="xorg-libX11-dev"
    17 # Rules to configure and make the package.
    18 compile_rules()
    19 {
    20     cd $src
    21     ./configure \
    22     	--prefix=/usr \
    23     	--sysconfdir=/etc \
    24     	--mandir=/usr/share/man \
    25     	--localstatedir=/var \
    26     $CONFIGURE_ARGS
    27     make
    28     make DESTDIR=$DESTDIR install
    29 }
    31 # Rules to gen a SliTaz package suitable for Tazpkg.
    32 genpkg_rules()
    33 {
    34 	mkdir -p $fs/usr
    35 	cp -a $install/usr/bin $fs/usr
    36 }