wok view xorg-xauth/receipt @ rev 20995

updated gputils (0.14.3 -> 1.5.0.1)
author Hans-G?nter Theisgen
date Thu Mar 07 17:47:51 2019 +0100 (2019-03-07)
parents 7c60f0439906
children f0284bf3f6d4
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xauth"
4 VERSION="1.0.7"
5 CATEGORY="x-window"
6 SHORT_DESC="X authority file utility."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 SOURCE="xauth"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="https://www.x.org/"
12 WGET_URL="$XORG_MIRROR/app/$TARBALL"
13 HOST_ARCH="i486 arm"
15 DEPENDS="xorg-libXmu"
16 BUILD_DEPENDS="xorg-libXmu-dev"
18 case "$ARCH" in
19 arm) BUILD_DEPENDS="xorg-xproto xorg-libXau-dev" ;;
20 esac
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 cd $src
26 ./configure \
27 --mandir=/usr/share/man \
28 $CONFIGURE_ARGS &&
29 make && make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/X11R6
36 cp -a $install/usr/bin $fs/usr
37 ln -s ../bin $fs/usr/X11R6/bin
38 }