wok view xorg-xdriinfo/receipt @ rev 7650

Add squashfs+xz to kernel. This allows for greater compressing then lzma and it will work without cause a kernel opps. As long as the custom code for freeing lzma initramfs stays with lzma initramfs.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Dec 14 21:45:09 2010 +0000 (2010-12-14)
parents 07ae722ec64e
children c514cc4854d8
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xdriinfo"
4 SOURCE="xdriinfo"
5 VERSION="1.0.4"
6 CATEGORY="x-window"
7 SHORT_DESC="Query configuration information of DRI drivers"
8 MAINTAINER="pankso@slitaz.org"
9 DEPENDS="xorg-libX11"
10 BUILD_DEPENDS="mesa"
11 SUGGESTED="nvidia"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WEB_SITE="http://www.x.org/"
14 WGET_URL="http://xorg.mirror.solnet.ch/pub/individual/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 &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 }