wok-next diff xorg-xcursorgen/receipt @ rev 19805

Update full xorg-* stack (add / upgrade / remove no more compiled packages with this xorg-server), normalize receipts to v2.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jul 14 16:02:21 2017 +0300 (2017-07-14)
parents f463de72afe3
children 0e7893ac206d
line diff
     1.1 --- a/xorg-xcursorgen/receipt	Sun Jun 18 04:38:10 2017 +0300
     1.2 +++ b/xorg-xcursorgen/receipt	Fri Jul 14 16:02:21 2017 +0300
     1.3 @@ -1,9 +1,9 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="xorg-xcursorgen"
     1.8  VERSION="1.0.6"
     1.9  CATEGORY="x-window"
    1.10 -SHORT_DESC="X cursor generator."
    1.11 +SHORT_DESC="Create an X cursor file from PNG images"
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  LICENSE="MIT"
    1.14  WEB_SITE="https://www.x.org/wiki/"
    1.15 @@ -12,17 +12,24 @@
    1.16  TARBALL="xcursorgen-$VERSION.tar.bz2"
    1.17  WGET_URL="$XORG_MIRROR/app/$TARBALL"
    1.18  
    1.19 -DEPENDS="xorg-libX11 xorg-libXcursor libpng"
    1.20 -BUILD_DEPENDS="xorg-util-macros xorg-libX11-dev xorg-libXcursor-dev libpng-dev"
    1.21 +BUILD_DEPENDS="xorg-util-macros xorg-libX11-dev xorg-libXcursor-dev \
    1.22 +libpng16-dev"
    1.23 +PKG_RULE="std"
    1.24  
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28 -	./configure $CONFIGURE_ARGS && make && make install
    1.29 +	./configure \
    1.30 +		--sysconfdir=/etc \
    1.31 +		--localstatedir=/var \
    1.32 +		$CONFIGURE_ARGS &&
    1.33 +	make &&
    1.34 +	make install
    1.35  }
    1.36  
    1.37  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.38  genpkg_rules()
    1.39  {
    1.40 -	copy bin/
    1.41 +	copy @std
    1.42 +	DEPENDS="libpng16 xorg-libX11 xorg-libXcursor"
    1.43  }