mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-02 09:52:18 +00:00
6a5d933a1a
* add: install new getcommit script
* chore: bump ver to 0.1.4
* fix: undo release bump
(cherry picked from commit 3cf96acf18)
Co-authored-by: J. <105894089+Its-J@users.noreply.github.com>
37 lines
974 B
RPMSpec
37 lines
974 B
RPMSpec
Name: terra-scripts
|
|
Version: 0.1.4
|
|
Release: 1%{?dist}
|
|
Summary: Helpful scripts for contributing to Terra
|
|
License: GPL-3.0-or-later
|
|
URL: https://github.com/terrapkg/cli-tools
|
|
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz
|
|
Requires: bash
|
|
BuildArch: noarch
|
|
Packager: Its-J <jonah@fyralabs.com>
|
|
|
|
%description
|
|
%{summary}.
|
|
|
|
%prep
|
|
%autosetup -n cli-tools-%{version}
|
|
|
|
%install
|
|
install -Dm 755 format-license.sh %{buildroot}%{_bindir}/format-license
|
|
install -Dm 755 ldd-dnf.sh %{buildroot}%{_bindir}/ldd-dnf
|
|
install -Dm 755 changelog.sh %{buildroot}%{_bindir}/changelog
|
|
install -Dm 755 getcommit.sh %{buildroot}%{_bindir}/getcommit
|
|
|
|
%files
|
|
%doc README.md
|
|
%license LICENSE
|
|
%{_bindir}/format-license
|
|
%{_bindir}/ldd-dnf
|
|
%{_bindir}/changelog
|
|
%{_bindir}/getcommit
|
|
|
|
%changelog
|
|
* Sun May 24 2026 Its-J <jonah@fyralabs.com>
|
|
- Add getcommit.sh
|
|
* Sat May 23 2026 Its-J <jonah@fyralabs.com>
|
|
- Package terra-scripts
|