wok view xorg-xauth/receipt @ rev 12544

pcmanfm: Fix build with binutils 2.22 (use LDFLAGS)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 26 13:38:37 2012 +0200 (2012-04-26)
parents c514cc4854d8
children 6d1e49695497
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xauth"
4 VERSION="1.0.7"
5 CATEGORY="x-window"
6 SHORT_DESC="X authority file utility."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="xauth"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.x.org/"
11 WGET_URL="$XORG_MIRROR/app/$TARBALL"
13 DEPENDS="xorg-libXmu"
14 BUILD_DEPENDS="xorg-libXmu-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
30 cp -a $install/usr/bin $fs/usr
31 }