wok diff xorg-xdriinfo/receipt @ rev 22802

freetype: add freetype-config
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 28 09:23:39 2020 +0100 (2020-01-28)
parents 814c58f64f83
children 5d79829fa876
line diff
     1.1 --- a/xorg-xdriinfo/receipt	Thu Aug 09 12:16:16 2018 +0200
     1.2 +++ b/xorg-xdriinfo/receipt	Tue Jan 28 09:23:39 2020 +0100
     1.3 @@ -2,25 +2,27 @@
     1.4  
     1.5  PACKAGE="xorg-xdriinfo"
     1.6  SOURCE="xdriinfo"
     1.7 -VERSION="1.0.4"
     1.8 +VERSION="1.0.6"
     1.9  CATEGORY="x-window"
    1.10 -SHORT_DESC="Query configuration information of DRI drivers"
    1.11 +SHORT_DESC="Query configuration information of DRI drivers."
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  LICENSE="MIT"
    1.14 +WEB_SITE="https://www.x.org/wiki/"
    1.15 +
    1.16  TARBALL="$SOURCE-$VERSION.tar.bz2"
    1.17 -WEB_SITE="https://www.x.org/"
    1.18  WGET_URL="http://xorg.mirror.solnet.ch/pub/individual/app/$TARBALL"
    1.19 +
    1.20  SUGGESTED="nvidia"
    1.21 -
    1.22 -DEPENDS="xorg-libX11 mesa"
    1.23 -BUILD_DEPENDS="xorg-libX11-dev mesa-dev"
    1.24 +DEPENDS="mesa xorg-libX11"
    1.25 +BUILD_DEPENDS="mesa-dev xorg-libX11-dev"
    1.26  
    1.27  # Rules to configure and make the package.
    1.28  compile_rules()
    1.29  {
    1.30 -	cd $src
    1.31 -	./configure --prefix=/usr \
    1.32 -	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.33 +	./configure			\
    1.34 +		--prefix=/usr		\
    1.35 +		--mandir=/usr/share/man	\
    1.36 +		$CONFIGURE_ARGS &&
    1.37  	make &&
    1.38  	make DESTDIR=$DESTDIR install
    1.39  }
    1.40 @@ -29,5 +31,5 @@
    1.41  genpkg_rules()
    1.42  {
    1.43  	mkdir -p $fs/usr
    1.44 -	cp -a $install/usr/bin $fs/usr
    1.45 +	cp -a $install/usr/bin	$fs/usr
    1.46  }