wok-current view libxdg-basedir/receipt @ rev 13704
adding folder creations & perms
| author | xfred222 | 
|---|---|
| date | Mon Dec 17 08:42:01 2012 -0500 (2012-12-17) | 
| parents | f77edeb20f12 | 
| children | 8d6f480bf664 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="libxdg-basedir"
     4 VERSION="1.1.0"
     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"
    11 CROSS="error"
    13 # Rules to configure and make the package.
    14 compile_rules()
    15 {
    16 	cd $src
    17 	./configure \
    18 		--prefix=/usr \
    19 		--build=$HOST_SYSTEM \
    20 		--host=$HOST_SYSTEM &&
    21 	make && make 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 }