wok view xorg-xhost/receipt @ rev 22344
Remove squirrelmail-en_GB
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Nov 17 16:39:12 2019 +0100 (2019-11-17) |
parents | 814c58f64f83 |
children | 5d79829fa876 |
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xhost"
4 VERSION="1.0.8"
5 CATEGORY="x-window"
6 SHORT_DESC="Server access control program for X."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.x.org/wiki/"
11 SOURCE="xhost"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="$XORG_MIRROR/app/$TARBALL"
15 DEPENDS="xorg"
16 BUILD_DEPENDS="xorg-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }