wok view xorg-libXrandr/receipt @ rev 6653

Fixed gdk-pixbuf. Added xpm and jpeg to be build into gdk-pixbuf instead of being just plugins. Fixes some missing icons and background from being missig in slitaz desktop.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Oct 11 01:06:19 2010 +0000 (2010-10-11)
parents 413b0174114a
children 07ae722ec64e
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXrandr"
4 VERSION="1.3.0"
5 #VERSION="1.3.0"
6 CATEGORY="x-window"
7 SHORT_DESC="Xorg server module."
8 MAINTAINER="pankso@slitaz.org"
9 SOURCE="libXrandr"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 DEPENDS="xorg-libXext xorg-libXrender xorg-libX11 xorg-libXau xorg-libXdmcp"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr --sysconfdir=/etc \
21 --mandir=/usr/share/man --localstatedir=/var \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }