# HG changeset patch # User Christophe Lincoln # Date 1335284248 -7200 # Node ID a8e710f0541fcdb81377467e3ed503feaac761ed # Parent 5fc2435b381d29b34d7cb3db148d6b79a54b2b34 Up: xorg-xproto diff -r 5fc2435b381d -r a8e710f0541f xorg-xproto/receipt --- a/xorg-xproto/receipt Tue Apr 24 17:23:18 2012 +0200 +++ b/xorg-xproto/receipt Tue Apr 24 18:17:28 2012 +0200 @@ -1,31 +1,33 @@ # SliTaz package receipt. PACKAGE="xorg-xproto" -VERSION="7.0.22" +VERSION="7.0.23" CATEGORY="development" SHORT_DESC="Xorg server module." MAINTAINER="pankso@slitaz.org" -DEPENDS="xorg-util-macros" -BUILD_DEPENDS="xorg-util-macros" SOURCE="xproto" TARBALL="$SOURCE-$VERSION.tar.bz2" WEB_SITE="http://www.x.org/" WGET_URL="$XORG_MIRROR/proto/$TARBALL" +DEPENDS="xorg-util-macros" +BUILD_DEPENDS="xorg-util-macros" + # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --sysconfdir=/etc \ - --mandir=/usr/share/man --localstatedir=/var \ - $CONFIGURE_ARGS - make - make DESTDIR=$PWD/_pkg install + cd $src + ./configure \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/* $fs + cp -a $install/* $fs }