wok annotate xorg-x11perf/receipt @ rev 24026
created recipe for os-prober
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 24 16:16:25 2021 +0100 (2021-03-24) |
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 } |