wok view xorg-xdriinfo/receipt @ rev 22781

updated freetype and freetype-dev (2.6.4 -> 2.10.1)
author Hans-G?nter Theisgen
date Sun Jan 26 09:26:49 2020 +0100 (2020-01-26)
parents 814c58f64f83
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xdriinfo"
4 SOURCE="xdriinfo"
5 VERSION="1.0.6"
6 CATEGORY="x-window"
7 SHORT_DESC="Query configuration information of DRI drivers."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="https://www.x.org/wiki/"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="http://xorg.mirror.solnet.ch/pub/individual/app/$TARBALL"
15 SUGGESTED="nvidia"
16 DEPENDS="mesa xorg-libX11"
17 BUILD_DEPENDS="mesa-dev xorg-libX11-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --prefix=/usr \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 }