wok-next diff xorg-xauth/receipt @ rev 20082

Up clementine
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Wed Oct 25 12:19:39 2017 +0200 (2017-10-25)
parents f463de72afe3
children 0e7893ac206d
line diff
     1.1 --- a/xorg-xauth/receipt	Sun Jun 18 04:38:10 2017 +0300
     1.2 +++ b/xorg-xauth/receipt	Wed Oct 25 12:19:39 2017 +0200
     1.3 @@ -1,9 +1,9 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="xorg-xauth"
     1.8  VERSION="1.0.9"
     1.9  CATEGORY="x-window"
    1.10 -SHORT_DESC="X authority file utility."
    1.11 +SHORT_DESC="X authority file utility"
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  LICENSE="MIT"
    1.14  WEB_SITE="https://www.x.org/wiki/"
    1.15 @@ -12,23 +12,26 @@
    1.16  TARBALL="xauth-$VERSION.tar.bz2"
    1.17  WGET_URL="$XORG_MIRROR/app/$TARBALL"
    1.18  
    1.19 -DEPENDS="xorg-libX11 xorg-libXau xorg-libXext xorg-libXmu"
    1.20  BUILD_DEPENDS="xorg-libXmu-dev"
    1.21 -
    1.22 -case "$ARCH" in
    1.23 -	arm) BUILD_DEPENDS="xorg-xproto xorg-libXau-dev" ;;
    1.24 -esac
    1.25 +BUILD_DEPENDS_arm="xorg-xproto xorg-libXau-dev"
    1.26 +PKG_RULE="std"
    1.27  
    1.28  # Rules to configure and make the package.
    1.29  compile_rules()
    1.30  {
    1.31 -	./configure $CONFIGURE_ARGS && make && make install
    1.32 +	./configure \
    1.33 +		--sysconfdir=/etc \
    1.34 +		--localstatedir=/var \
    1.35 +		$CONFIGURE_ARGS &&
    1.36 +	make &&
    1.37 +	make install
    1.38  }
    1.39  
    1.40  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.41  genpkg_rules()
    1.42  {
    1.43 -	copy bin/
    1.44 +	copy @std
    1.45  #	mkdir -p $fs/usr/X11R6
    1.46  #	ln -s ../bin $fs/usr/X11R6/bin
    1.47 +	DEPENDS="xorg-libX11 xorg-libXau xorg-libXext xorg-libXmu"
    1.48  }