-
Notifications
You must be signed in to change notification settings - Fork 0
/
torrentzip.spec.in
51 lines (42 loc) · 1.5 KB
/
torrentzip.spec.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Summary: The TorrentZip Recompressor
Name: @PACKAGE@
Version: @VERSION@
Release: 0
Epoch: 1
License: GPL
Group: Applications/Internet
URL: http://torrent.mametitles.co.uk/
Packager: %{packager}
Source: %{name}-%{version}.tgz
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
This program allows a possible BitTorrent seeder of large number of zipped files
to provide consistant file compression. If the sender and the recipient both
use TorrentZip to recompress their files, the zipfiles should have a similar
byte pattern. This should allow torrent downloads to happen faster.
%prep
%setup
%build
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{_prefix} \
--bindir=%{_bindir} \
--datadir=%{_datadir} \
--includedir=%{_includedir} \
--libdir=%{_libdir} \
--mandir=%{_mandir} \
--sysconfdir=%{_sysconfdir}
make
%install
rm -rf %{buildroot}
make prefix=%{buildroot}%{_prefix} bindir=%{buildroot}%{_bindir} \
datadir=%{buildroot}%{_datadir} includedir=%{buildroot}%{_includedir} \
libdir=%{buildroot}%{_libdir} mandir=%{buildroot}%{_mandir} \
sysconfdir=%{buildroot}%{_sysconfdir} \
install
%clean
rm -rf %{buildroot}
%files
%defattr(-, root, root)
/usr/bin/trrntzip
%changelog
* Mon Mar 28 2005 r3nh03k <[email protected]>
- Initial Release