wok annotate xorg-xdriinfo/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 814c58f64f83
children 5d79829fa876
rev   line source
pankso@3019 1 # SliTaz package receipt.
pankso@3019 2
pankso@3019 3 PACKAGE="xorg-xdriinfo"
pankso@3019 4 SOURCE="xdriinfo"
Hans-G?nter@22254 5 VERSION="1.0.6"
pankso@3019 6 CATEGORY="x-window"
Hans-G?nter@22254 7 SHORT_DESC="Query configuration information of DRI drivers."
pankso@3019 8 MAINTAINER="pankso@slitaz.org"
pascal@15579 9 LICENSE="MIT"
Hans-G?nter@22254 10 WEB_SITE="https://www.x.org/wiki/"
Hans-G?nter@22254 11
gokhlayeh@6993 12 TARBALL="$SOURCE-$VERSION.tar.bz2"
pankso@3019 13 WGET_URL="http://xorg.mirror.solnet.ch/pub/individual/app/$TARBALL"
Hans-G?nter@22254 14
pascal@13796 15 SUGGESTED="nvidia"
Hans-G?nter@22254 16 DEPENDS="mesa xorg-libX11"
Hans-G?nter@22254 17 BUILD_DEPENDS="mesa-dev xorg-libX11-dev"
pankso@3019 18
pankso@3019 19 # Rules to configure and make the package.
pankso@3019 20 compile_rules()
pankso@3019 21 {
Hans-G?nter@22254 22 ./configure \
Hans-G?nter@22254 23 --prefix=/usr \
Hans-G?nter@22254 24 --mandir=/usr/share/man \
Hans-G?nter@22254 25 $CONFIGURE_ARGS &&
pankso@3019 26 make &&
pascal@13796 27 make DESTDIR=$DESTDIR install
pankso@3019 28 }
pankso@3019 29
pankso@3019 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@3019 31 genpkg_rules()
pankso@3019 32 {
pankso@3019 33 mkdir -p $fs/usr
Hans-G?nter@22254 34 cp -a $install/usr/bin $fs/usr
pankso@3019 35 }