wok annotate xorg-x11perf/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 eb8067417980
children 5d79829fa876
rev   line source
pankso@3019 1 # SliTaz package receipt.
pankso@3019 2
pankso@3019 3 PACKAGE="xorg-x11perf"
Hans-G?nter@22246 4 VERSION="1.6.1"
pankso@3019 5 CATEGORY="x-window"
Hans-G?nter@22246 6 SHORT_DESC="Utility that runs one or more performance tests and reports."
pankso@3019 7 MAINTAINER="paul@slitaz.org"
pascal@15579 8 LICENSE="MIT"
Hans-G?nter@22246 9 WEB_SITE="https://www.x.org/wiki/"
Hans-G?nter@22246 10
pankso@3019 11 SOURCE="x11perf"
gokhlayeh@6993 12 TARBALL="$SOURCE-$VERSION.tar.bz2"
gokhlayeh@6993 13 WGET_URL="$XORG_MIRROR/app/$TARBALL"
pankso@3019 14
Hans-G?nter@22246 15 DEPENDS="xorg-libXft xorg-libXmu"
Hans-G?nter@22246 16 BUILD_DEPENDS="xorg-libXft-dev xorg-libXmu-dev"
pascal@15579 17
pankso@3019 18 # Rules to configure and make the package.
pankso@3019 19 compile_rules()
pankso@3019 20 {
Hans-G?nter@22246 21 ./configure \
Hans-G?nter@22246 22 --prefix=/usr \
Hans-G?nter@22246 23 --mandir=/usr/share/man \
Hans-G?nter@22246 24 $CONFIGURE_ARGS &&
Hans-G?nter@22246 25 make &&
Hans-G?nter@22246 26 make DESTDIR=$DESTDIR install
pankso@3019 27 }
pankso@3019 28
pankso@3019 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@3019 30 genpkg_rules()
pankso@3019 31 {
pankso@3019 32 mkdir -p $fs/usr
Hans-G?nter@22246 33
Hans-G?nter@22246 34 cp -a $install/usr/bin $fs/usr
Hans-G?nter@22246 35 cp -a $install/usr/lib $fs/usr
pankso@3019 36 }