blob: 661f7bf73799c4b9a7b16a9461a83e30a59579b8 (
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
|
Name: wgetpaste
Version: 2.33
Release: 1%{?dist}
Summary: Command-line interface to various paste-bins
License: MIT
URL: http://%{name}.zlin.dk/
Source0: %{url}/%{name}-%{version}.tar.bz2
Requires: bash sed wget
BuildArch: noarch
%description
Command-line interface to various paste-bins
%prep
%setup -q
%build
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p %{buildroot}/%{_bindir}
install -m 0755 %{name} %{buildroot}/%{_bindir}/%{name}
sed -i -e "s:/usr/bin/env bash:/bin/bash:" %{buildroot}/%{_bindir}/%{name}
%files
%{_bindir}/%{name}
%license LICENSE
%changelog
* Tue Oct 1 2019 Wulf C. Krueger <wk@mailstation.de> 2.29-1
- Update to 2.29
* Wed Mar 21 2018 Wulf C. Krueger <wk@mailstation.de> 2.28-1
- Initial package
|