forked from pool/ldapfuse
Dirk Mueller
05308547fb
Browse LDAP with a filesystem. OBS-URL: https://build.opensuse.org/request/show/77923 OBS-URL: https://build.opensuse.org/package/show/filesystems/ldapfuse?expand=0&rev=1
41 lines
716 B
RPMSpec
41 lines
716 B
RPMSpec
Name: ldapfuse
|
|
Version: 0.38
|
|
%define realver 0~38
|
|
Release: 0
|
|
Group: System/Filesystems
|
|
Summary: Browse LDAP trees via filesystem
|
|
License: GPLv3
|
|
URL: http://ldapfuse.sf.net/
|
|
|
|
Source: %name-%realver.tar.xz
|
|
BuildRoot: %_tmppath/%name-%version-build
|
|
BuildRequires: fuse-devel >= 2.7, openldap2-devel >= 2.3
|
|
BuildRequires: pkg-config >= 0.19, libHX-devel >= 3.4, xz
|
|
|
|
%description
|
|
A virtual filesystem for FUSE that allows to navigate an LDAP tree.
|
|
|
|
Author:
|
|
-------
|
|
Jan Engelhardt
|
|
|
|
%prep
|
|
%setup -qn %name-%realver
|
|
|
|
%build
|
|
if [ ! -e configure ]; then
|
|
./autogen.sh;
|
|
fi;
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make install DESTDIR="%buildroot";
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%_bindir/*
|
|
%doc %_mandir/*/*
|
|
|
|
%changelog
|