]> git.pld-linux.org Git - packages/botnet.git/commitdiff
- initial release
authorSebastian Zagrodzki <sebek@zagrodzki.net>
Wed, 23 Aug 2000 16:10:11 +0000 (16:10 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    botnet.spec -> 1.1

botnet.spec [new file with mode: 0644]

diff --git a/botnet.spec b/botnet.spec
new file mode 100644 (file)
index 0000000..d0bd096
--- /dev/null
@@ -0,0 +1,103 @@
+Summary:       a small library to assist development of IRC bots and/or clients
+Summary(pl):   ma³a biblioteka pomocna przy tworzeniu botów i/lub klientów IRC
+Name:          botnet
+Version:       1.5.1
+Release:       1
+Group:         Libraries
+Group(pl):     Biblioteki
+License:       GPL
+Source0:       http://zekiller.skytech.org/fichiers/botnet/%{name}-%{version}.tar.gz
+URL:           http://zekiller.skytech.org/main.html
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+BotNet is a small shared and statically linked library, intended to
+assist development of a bot or a full client for the IRC protocol (see
+RFC 1459). You can connect to an IRC server, send messages, and
+receive data from the server. Received data are parsed, and returned
+to the main thread. BotNet now supports services, and functions for
+easily make a leaf server compatible with the new RFCs (2810 to 2813).
+
+%description -l pl
+Botnet to ma³a biblioteka, w zamy¶le wspomagaj±ca tworzenie bota lub
+pe³nego klienta korzystaj±cego z protoko³u IRC (patrz RFC1459). Mo¿esz
+pod³±czyæ siê do serwera IRC, wysy³aæ wiadomo¶ci, oraz otrzymywaæ dane
+z serwera. Otrzymane dane s± parsowane i zwracane do g³ównego w±tku.
+BotNet zawiera te¿ us³ugi i funkcje do ³atwego tworzenia
+serwerów-li¶ci kompatybilnych z nowymi RFC (2810 do 2813).
+
+%package devel
+Summary:       header files for botnet
+Summary(pl):   pliki nag³ówkowe dla botneta
+Group:         Development/Libraries
+Group(pl):     Programowanie/Biblioteki
+Requires:      %{name} = %{version}
+
+%description devel
+Header files neccesary to develop botnet applications.
+
+%description -l pl devel
+Pliki nag³ówkowe niezbêdne do tworzenia aplikacji korzystaj±cych z
+botneta.
+
+%package static
+Summary:       botnet static library
+Summary(pl):   statyczna wersja biblioteki botnet
+Group:         Development/Libraries
+Group(pl):     Programowanie/Biblioteki
+Requires:      %{name}-devel = %{version}
+
+%description static
+Libraries neccessary to link botnet applications statically.
+
+%description -l pl static
+Biblioteka potrzebna do statycznego linkowania aplikacji
+korzystaj±cych z botneta.
+
+%prep
+%setup -q
+
+%build
+aclocal
+autoheader
+autoconf
+automake 
+
+LDFLAGS="-s" ; export LDFLAGS
+%configure 
+
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
+
+%{__make} DESTDIR=$RPM_BUILD_ROOT install
+install example/Makefile $RPM_BUILD_ROOT/%{_examplesdir}/%{name}-%{version}
+install example/*.c $RPM_BUILD_ROOT/%{_examplesdir}/%{name}-%{version}
+
+gzip -9nf ChangeLog AUTHORS *.txt
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc *.gz
+%attr(755,root,root) %{_libdir}/*.so.*.*
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/*.so
+%attr(755,root,root) %{_libdir}/*.la
+%{_includedir}/*
+%{_examplesdir}/%{name}-%{version}/*
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/*.a
This page took 0.073586 seconds and 4 git commands to generate.