wok view xorg-makedepend/receipt @ rev 10501

Add eeze: E17 udev api
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 25 14:07:19 2011 +0200 (2011-05-25)
parents
children a09e9d64e4c9
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-makedepend"
4 VERSION="1.0.3"
5 CATEGORY="x-window"
6 SHORT_DESC="X makedepend utility."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 BUILD_DEPENDS="xorg-xproto"
9 SOURCE="makedepend"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.x.org/"
12 WGET_URL="$XORG_MIRROR/util/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --mandir=/usr/share/man \
19 $CONFIGURE_ARGS
20 make
21 make DESTDIR=$PWD/_pkg install
22 chmod +x $PWD/_pkg/usr/bin/*
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 }