wok rev 18457

Add ldapfuse
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Sep 28 12:50:42 2015 +0200 (2015-09-28)
parents bbad6c384bed
children e4096688d955
files ldapfuse/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ldapfuse/receipt	Mon Sep 28 12:50:42 2015 +0200
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="ldapfuse"
     1.7 +VERSION="1.0"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="Provides a filesystem virtual view into an LDAP tree."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="GPL3"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.13 +WEB_SITE="http://sourceforge.net/projects/ldapfuse/"
    1.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
    1.15 +
    1.16 +DEPENDS="libldap fuse libhx"
    1.17 +BUILD_DEPENDS="openldap-dev fuse-dev libhx-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	./configure --prefix=/usr --infodir=/usr/share/info \
    1.23 +		--mandir=/usr/share/man \
    1.24 +		$CONFIGURE_ARGS &&
    1.25 +	make &&
    1.26 +	make DESTDIR=$DESTDIR install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	mkdir -p $fs/usr
    1.33 +	cp -a $install/usr/bin $fs/usr
    1.34 +}