forked from pool/ldapfuse
OBS-URL: https://build.opensuse.org/package/show/filesystems/ldapfuse?expand=0&rev=5
60 lines
1.5 KiB
RPMSpec
60 lines
1.5 KiB
RPMSpec
#
|
|
# spec file for package ldapfuse
|
|
#
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
|
|
Name: ldapfuse
|
|
Version: 0.39
|
|
Release: 1
|
|
%define realver 0~39
|
|
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: libHX-devel >= 3.4 pkg-config >= 0.19 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
|