wok-current view xorg-xauth/receipt @ rev 15664
Add network-manager-dev
| author | Richard Dunbar <mojo@slitaz.org> | 
|---|---|
| date | Thu Dec 12 22:50:37 2013 +0000 (2013-12-12) | 
| parents | 6d1e49695497 | 
| children | fd812ac90452 | 
 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 LICENSE="MIT"
     9 SOURCE="xauth"
    10 TARBALL="$SOURCE-$VERSION.tar.bz2"
    11 WEB_SITE="http://www.x.org/"
    12 WGET_URL="$XORG_MIRROR/app/$TARBALL"
    14 DEPENDS="xorg-libXmu"
    15 BUILD_DEPENDS="xorg-libXmu-dev"
    17 # Rules to configure and make the package.
    18 compile_rules()
    19 {
    20 	cd $src
    21 	./configure \
    22 		--mandir=/usr/share/man \
    23 		$CONFIGURE_ARGS &&
    24 	make && make install
    25 }
    27 # Rules to gen a SliTaz package suitable for Tazpkg.
    28 genpkg_rules()
    29 {
    30 	mkdir -p $fs/usr/X11R6
    31 	cp -a $install/usr/bin $fs/usr
    32 	ln -s ../bin $fs/usr/X11R6/bin
    33 }