summaryrefslogtreecommitdiff
path: root/rpm/mscp.spec.in
blob: 189de0f20f0219e000f187be3d4261c526f3967e (plain)
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
Name:		mscp
Version:	@MSCP_VERSION@
Release:	1%{?dist}
Summary:	mscp, fast file transfer over multiple SSH connections

Group:		Applications/Internet
License:	GPLv3
URL:		https://github.com/upa/mscp
Source0:	%{name}-%{version}.tar.gz

BuildRequires:	gcc make cmake zlib-devel openssl-devel
Requires:	glibc crypto-policies krb5-libs openssl-libs libcom_err

%description
mscp transfers files over multiple SSH connections. Multiple threads
and connections in mscp transfer (1) multiple files simultaneously
and (2) a large file in parallel. It would shorten the waiting time
for transferring a lot of/large files over networks.


%global debug_package %{nil}

%prep
%setup -q


%build
cmake -S . -B build -DINSTALL_EXECUTABLE_ONLY=ON
make -C build %{?_smp_mflags}


%install
make -C build install DESTDIR=%{buildroot}

%files
/usr/local/bin/mscp
/usr/local/share/man/man1/mscp.1


%changelog
* Thu Mar 14 2024 Ryo Nakamura <upa@haeena.net> - 0.1.5-0
- RPM release for v0.1.5

* Wed Feb 07 2024 Ryo Nakamura <upa@haeena.net> - 0.1.4-0
- RPM release for v0.1.4

* Sat Feb 03 2024 Ryo Nakamura <upa@haeena.net> - 0.1.3-0
- Initial release for rpm packaging