wok view libxdg-basedir/receipt @ rev 4473

Update DEPENDS, BUILD_DEPENDS (epdfview)
author Rohit Joshi <jozee@slitaz.org>
date Mon Nov 09 14:22:26 2009 +0000 (2009-11-09)
parents
children f77edeb20f12
line source
1 # SliTaz package receipt.
3 PACKAGE="libxdg-basedir"
4 VERSION="1.0.1"
5 CATEGORY="development"
6 SHORT_DESC="This library implements functions to list the directories according to the XDG Base Directory specification and provides a few higher-level functions for use with the specification."
7 MAINTAINER="mallory@sweetpeople.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://n.ethz.ch/~nevillm/download/libxdg-basedir"
10 WGET_URL="$WEB_SITE/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --prefix=/usr \
18 --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS &&
21 make && make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }