wok view xorg-x11perf/receipt @ rev 6889

Added nspr-dev to nss-dev depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Oct 21 01:30:02 2010 +0000 (2010-10-21)
parents f6161b2e9e00
children 07ae722ec64e
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-x11perf"
4 VERSION="1.5"
5 CATEGORY="x-window"
6 SHORT_DESC="Utility who runs one or more performance tests and reports."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext xorg-libXmu \
9 xorg-libXft"
10 BUILD_DEPENDS="xorg-libXdmcp-dev xorg-kbproto xorg-xproto"
11 SOURCE="x11perf"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="http://xorg.freedesktop.org/"
14 WGET_URL="http://xorg.freedesktop.org/releases/X11R7.4/src/app/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr \
21 --mandir=/usr/share/man $CONFIGURE_ARGS && \
22 make && make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib $fs/usr
31 }