-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.spec
More file actions
32 lines (24 loc) · 746 Bytes
/
project.spec
File metadata and controls
32 lines (24 loc) · 746 Bytes
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
Name: rname
Version: 2.1
Release: 1%{?dist}
Summary: A bulk file renaming utility
License: GPLv3
URL: https://github.com/acidburnmonkey/Rname
Source0: rname-%{version}.tar.gz
BuildRequires: golang >= 1.19
%description
rname is a simple file rename utility written in Go. Rather than using the
move command and having to re type the path twice. Rname renames the file
or directory at its current path.
%prep
%setup -q -c -n rname-%{version}
%build
go build -o rname main.go
%install
install -Dm755 rname %{buildroot}%{_bindir}/rname
%files
%{_bindir}/rname
%license LICENSE
%changelog
* Wed Dec 11 2024 acidburnmonkey <acidburnmonkey@proton.me> - 2.1.7-1
- minor addition to help()