wok diff xorg-x11perf/receipt @ rev 23987
syslinux: fix iso2exe/init (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Dec 02 13:39:32 2020 +0000 (2020-12-02) |
parents | eb8067417980 |
children | 5d79829fa876 |
line diff
1.1 --- a/xorg-x11perf/receipt Sat Nov 30 10:06:29 2013 +0000 1.2 +++ b/xorg-x11perf/receipt Wed Dec 02 13:39:32 2020 +0000 1.3 @@ -1,32 +1,36 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="xorg-x11perf" 1.7 -VERSION="1.5.2" 1.8 +VERSION="1.6.1" 1.9 CATEGORY="x-window" 1.10 -SHORT_DESC="Utility who runs one or more performance tests and reports." 1.11 +SHORT_DESC="Utility that runs one or more performance tests and reports." 1.12 MAINTAINER="paul@slitaz.org" 1.13 LICENSE="MIT" 1.14 +WEB_SITE="https://www.x.org/wiki/" 1.15 + 1.16 SOURCE="x11perf" 1.17 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.18 -WEB_SITE="http://xorg.freedesktop.org/" 1.19 WGET_URL="$XORG_MIRROR/app/$TARBALL" 1.20 1.21 -DEPENDS="xorg-libXmu xorg-libXft" 1.22 -BUILD_DEPENDS="xorg-libXmu-dev xorg-libXft-dev" 1.23 +DEPENDS="xorg-libXft xorg-libXmu" 1.24 +BUILD_DEPENDS="xorg-libXft-dev xorg-libXmu-dev" 1.25 1.26 # Rules to configure and make the package. 1.27 compile_rules() 1.28 { 1.29 - cd $src 1.30 - ./configure --prefix=/usr \ 1.31 - --mandir=/usr/share/man $CONFIGURE_ARGS && \ 1.32 - make && make DESTDIR=$DESTDIR install 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 1.41 # Rules to gen a SliTaz package suitable for Tazpkg. 1.42 genpkg_rules() 1.43 { 1.44 mkdir -p $fs/usr 1.45 - cp -a $install/usr/bin $fs/usr 1.46 - cp -a $install/usr/lib $fs/usr 1.47 + 1.48 + cp -a $install/usr/bin $fs/usr 1.49 + cp -a $install/usr/lib $fs/usr 1.50 }