wok annotate xorg-xmodmap/receipt @ rev 23294

updated perl-carp-clan (6.04 -> 6.08)
author Hans-G?nter Theisgen
date Sun Mar 29 15:57:01 2020 +0100 (2020-03-29)
parents 814c58f64f83
children 5d79829fa876
rev   line source
pankso@508 1 # SliTaz package receipt.
pankso@508 2
pankso@508 3 PACKAGE="xorg-xmodmap"
Hans-G?nter@22296 4 VERSION="1.0.10"
pankso@508 5 CATEGORY="x-window"
pankso@508 6 SHORT_DESC="X keyboard and mouse configuration utility."
pankso@508 7 MAINTAINER="pankso@slitaz.org"
pascal@15579 8 LICENSE="MIT"
Hans-G?nter@22296 9 WEB_SITE="https://www.x.org/wiki/"
Hans-G?nter@22296 10
pankso@508 11 SOURCE="xmodmap"
gokhlayeh@6993 12 TARBALL="$SOURCE-$VERSION.tar.bz2"
pankso@977 13 WGET_URL="$XORG_MIRROR/app/$TARBALL"
pankso@508 14
pascal@15579 15 DEPENDS="xorg-libX11"
pascal@15579 16 BUILD_DEPENDS="xorg-libX11-dev"
pascal@15579 17
pankso@508 18 # Rules to configure and make the package.
pankso@508 19 compile_rules()
pankso@508 20 {
Hans-G?nter@22296 21 ./configure \
Hans-G?nter@22296 22 --prefix=/usr \
Hans-G?nter@22296 23 --sysconfdir=/etc \
Hans-G?nter@22296 24 --mandir=/usr/share/man \
Hans-G?nter@22296 25 --localstatedir=/var \
Hans-G?nter@22296 26 $CONFIGURE_ARGS &&
Hans-G?nter@22296 27 make &&
Hans-G?nter@22296 28 make DESTDIR=$DESTDIR install
pankso@508 29 }
pankso@508 30
pankso@508 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@508 32 genpkg_rules()
pankso@508 33 {
pankso@508 34 mkdir -p $fs/usr
Hans-G?nter@22296 35 cp -a $install/usr/bin $fs/usr
pankso@508 36 }