wok annotate ldapfuse/receipt @ rev 20663

updated sc-im (0.6.0 -> 0.7.0)
author Hans-G?nter Theisgen
date Tue Jan 15 14:45:17 2019 +0100 (2019-01-15)
parents fcf9e6ce8914
children 65d7d867e0c1
rev   line source
pascal@18457 1 # SliTaz package receipt.
pascal@18457 2
pascal@18457 3 PACKAGE="ldapfuse"
pascal@18457 4 VERSION="1.0"
pascal@18457 5 CATEGORY="system-tools"
pascal@18457 6 SHORT_DESC="Provides a filesystem virtual view into an LDAP tree."
pascal@18457 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@18457 8 LICENSE="GPL3"
pascal@18457 9 TARBALL="$PACKAGE-$VERSION.tar.xz"
pascal@20421 10 WEB_SITE="https://sourceforge.net/projects/ldapfuse/"
pascal@18457 11 WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
pascal@18457 12
pascal@18457 13 DEPENDS="libldap fuse libhx"
pascal@18457 14 BUILD_DEPENDS="openldap-dev fuse-dev libhx-dev"
pascal@18457 15
pascal@18457 16 # Rules to configure and make the package.
pascal@18457 17 compile_rules()
pascal@18457 18 {
pascal@18457 19 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@18457 20 --mandir=/usr/share/man \
pascal@18457 21 $CONFIGURE_ARGS &&
pascal@18457 22 make &&
pascal@18457 23 make DESTDIR=$DESTDIR install
pascal@18457 24 }
pascal@18457 25
pascal@18457 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@18457 27 genpkg_rules()
pascal@18457 28 {
pascal@18457 29 mkdir -p $fs/usr
pascal@18457 30 cp -a $install/usr/bin $fs/usr
pascal@18457 31 }