wok view xorg-xkill/receipt @ rev 15774

Add TinyCM - A new content manager for SliTaz
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jan 08 00:18:35 2014 +0100 (2014-01-08)
parents 02bbaa9d12ba
children 87646c0eaba7
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xkill"
4 SOURCE="xkill"
5 VERSION="1.0.3"
6 CATEGORY="x-window"
7 SHORT_DESC="X application killer"
8 MAINTAINER="mallory@sweetpeople.org"
9 LICENSE="MIT"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.x.org/"
12 WGET_URL="http://xorg.mirror.solnet.ch/pub/individual/app/$TARBALL"
14 DEPENDS="xorg-libXmu"
15 BUILD_DEPENDS="xorg-libXmu-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr --infodir=/usr/share/info \
22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }