]> git.pld-linux.org Git - packages/btpd.git/blob - btpd.spec
- up to 0.16
[packages/btpd.git] / btpd.spec
1 Summary:        Bittorent client
2 Name:           btpd
3 Version:        0.16
4 Release:        0.1
5 License:        BSD-like
6 Group:          Applications
7 Source0:        https://github.com/btpd/btpd/archive/v%{version}.tar.gz
8 # Source0-md5:  fdbd95e0c11ac11c4cc1c92d9da8f275
9 URL:            https://github.com/btpd/btpd/wiki/
10 BuildRequires:  openssl-devel
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 btpd is a bittorrent client consisting of a daemon and client
15 commands, which can be used to read and/or manipulate the daemon
16 state. The daemon is capable of running several torrents
17 simultaneously and only uses one tcp port. It's fairly low on resource
18 usage and should be perfect for file distribution sites. Efficient
19 downloads and ease of use makes this client a good choice for the
20 casual user as well.
21
22 %prep
23 %setup -q
24
25 %build
26 %{__aclocal}
27 %{__autoconf}
28 %{__automake}
29 %configure
30 %{__make}
31
32 %install
33 rm -rf $RPM_BUILD_ROOT
34
35 %{__make} install \
36         DESTDIR=$RPM_BUILD_ROOT
37
38 %clean
39 rm -rf $RPM_BUILD_ROOT
40
41 %files
42 %defattr(644,root,root,755)
43 %doc README
44 %attr(755,root,root) %{_bindir}/*
45 %{_mandir}/man1/bt*.1*
This page took 0.054882 seconds and 3 git commands to generate.