]> git.pld-linux.org Git - packages/unbound.git/commitdiff
- added, NFY
authoraredridel <aredridel@pld-linux.org>
Wed, 21 May 2008 13:59:04 +0000 (13:59 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    unbound.spec -> 1.1

unbound.spec [new file with mode: 0644]

diff --git a/unbound.spec b/unbound.spec
new file mode 100644 (file)
index 0000000..a90fb99
--- /dev/null
@@ -0,0 +1,108 @@
+#
+Summary:       Recursive, validating DNS server
+Name:          unbound
+Version:       1.0.0
+Release:       1
+License:       BSD
+Group:         Applications
+Source0:       http://www.unbound.net/downloads/%{name}-%{version}.tar.gz
+# Source0-md5: 05b7532c26e6005f7575d04fc44fb893
+URL:           http://unbound.net/
+#BuildRequires:        -
+#BuildRequires:        autoconf
+#BuildRequires:        automake
+#BuildRequires:        intltool
+#BuildRequires:        libtool
+BuildRequires: rpmbuild(macros) >= 1.228
+Requires(post,preun):  /sbin/chkconfig
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Unbound is a validating, recursive, and caching DNS resolver.
+
+The C implementation of Unbound is developed and maintained by NLnet
+Labs. It is based on ideas and algorithms taken from a java prototype
+developed by Verisign labs, Nominet, Kirei and ep.net.
+
+Unbound is designed as a set of modular components, so that also
+DNSSEC (secure DNS) validation and stub-resolvers (that do not run as
+a server, but are linked into an application) are easily possible.
+
+%package devel
+Summary:       Header files for unbound library
+Summary(pl.UTF-8):     Pliki nagłówkowe biblioteki unbound
+Group:         Development/Libraries
+Requires:      %{name} = %{version}-%{release}
+
+%description devel
+Header files for unbound library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki unbound.
+
+%package static
+Summary:       Static unbound library
+Summary(pl.UTF-8):     Statyczna biblioteka unbound
+Group:         Development/Libraries
+Requires:      %{name}-devel = %{version}-%{release}
+
+%description static
+Static unbound library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka unbound.
+
+%prep
+%setup -q
+
+%build
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun        -p /sbin/ldconfig
+
+%if %{with initscript}
+%post
+/sbin/chkconfig --add %{name}
+%service %{name} restart
+
+%preun
+if [ "$1" = "0" ]; then
+       %service -q %{name} stop
+       /sbin/chkconfig --del %{name}
+fi
+%endif
+
+%files
+%defattr(644,root,root,755)
+%doc doc/Changelog doc/CREDITS  doc/plan doc/example.conf doc/README
+%doc  doc/FEATURES  doc/ietf67-design-02.odp doc/ietf67-design-02.pdf 
+%doc doc/requirements.txt doc/TODO                  
+%{_sysconfdir}/%{name}/unbound.conf
+%attr(755,root,root) %{_libdir}/libunbound.so.*.*.*
+%attr(755,root,root) %{_sbindir}/unbound
+%attr(755,root,root) %{_sbindir}/unbound-checkconf
+%attr(755,root,root) %{_sbindir}/unbound-host
+%{_mandir}/man1/unbound-host.1*
+%{_mandir}/man5/unbound.conf.5*
+%{_mandir}/man8/unbound-checkconf.8*
+%{_mandir}/man8/unbound.8*
+
+%files devel
+%{_includedir}/unbound.h
+%{_libdir}/libunbound.la
+%{_libdir}/libunbound.so
+%{_mandir}/man3/libunbound.3*
+
+%files static
+%{_libdir}/libunbound.a
This page took 0.135257 seconds and 4 git commands to generate.