Advertisement
Logos01

Untitled

Jul 1st, 2013
2,443
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #
  2. # spec file for package shelldap
  3. #
  4. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
  5. #
  6. # All modifications and additions to the file contributed by third parties
  7. # remain the property of their copyright owners, unless otherwise agreed
  8. # upon. The license for this file, and modifications and additions to the
  9. # file, is the same license as for the pristine package itself (unless the
  10. # license for the pristine package is not an Open Source License, in which
  11. # case the license is the MIT License). An "Open Source License" is a
  12. # license that conforms to the Open Source Definition (Version 1.9)
  13. # published by the Open Source Initiative.
  14.  
  15. Name:           shelldap
  16. Version:        0.5
  17. Release:        0
  18. License:        BSD-3-Clause
  19. Summary:        Shell-like interface to LDAP servers
  20. Url:            http://projects.martini.nu/shelldap
  21. Group:          Productivity/Networking/LDAP/Clients
  22. Source0:        %{name}-%{version}.tar.gz
  23. Requires:       perl-LDAP perl-YAML-Syck perl-Term-Shell perl-MD5
  24. Requires:       perl-Algorithm-Diff
  25. BuildArch:      x86_64
  26. BuildRoot:      %{_tmppath}/%{name}-%{version}-build
  27.  
  28. %description
  29. Shelldap is a program for interacting with an LDAP server
  30. via a shell-like interface.
  31.  
  32. This is not meant to be an exhaustive LDAP editing and browsing
  33. interface, but rather an intuitive shell for performing basic LDAP
  34. tasks quickly and with minimal effort.
  35.  
  36. %prep
  37. %setup
  38.  
  39. %build
  40.  
  41. %install
  42. mkdir -p %{buildroot}%{_bindir}
  43. install -m 755 shelldap %{buildroot}%{_bindir}/shelldap
  44.  
  45. %clean
  46. rm -rf %{buildroot}
  47.  
  48. %files
  49. %defattr(-,root,root)
  50. %{_bindir}/shelldap
  51.  
  52. %doc README ChangeLog
  53.  
  54. %changelog
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement