wok-next diff xorg-bigreqsproto/receipt @ rev 20180

opencc: fix wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Nov 02 12:28:56 2017 +0100 (2017-11-02)
parents f463de72afe3
children 0e7893ac206d
line diff
     1.1 --- a/xorg-bigreqsproto/receipt	Sun Jun 18 04:38:10 2017 +0300
     1.2 +++ b/xorg-bigreqsproto/receipt	Thu Nov 02 12:28:56 2017 +0100
     1.3 @@ -1,28 +1,34 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="xorg-bigreqsproto"
     1.8  VERSION="1.1.2"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="BigReqs extension headers"
    1.11 +SHORT_DESC="BigReqs extension header files"
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13 -LICENSE="other"
    1.14 -WEB_SITE="http://www.x.org/"
    1.15 +LICENSE="MIT"
    1.16 +WEB_SITE="https://www.x.org/wiki/"
    1.17  HOST_ARCH="i486 arm"
    1.18  
    1.19  TARBALL="bigreqsproto-$VERSION.tar.bz2"
    1.20  WGET_URL="$XORG_MIRROR/proto/$TARBALL"
    1.21  
    1.22 -DEPENDS="xorg-util-macros pkg-config"
    1.23  BUILD_DEPENDS="xorg-util-macros"
    1.24 +PKG_RULE="dev"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28  {
    1.29 -	./configure $CONFIGURE_ARGS && make && make install
    1.30 +	./configure \
    1.31 +		--sysconfdir=/etc \
    1.32 +		--localstatedir=/var \
    1.33 +		$CONFIGURE_ARGS &&
    1.34 +	make &&
    1.35 +	make install
    1.36  }
    1.37  
    1.38  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.39  genpkg_rules()
    1.40  {
    1.41 -	copy *.h *.pc
    1.42 +	copy @dev
    1.43 +	DEPENDS="xorg-util-macros"
    1.44  }