35 lines
486 B
RPMSpec
35 lines
486 B
RPMSpec
Name: demus-profile-scripts
|
|
Version: 0.1
|
|
Release: 0%{?dist}
|
|
Summary: Bash profile customisations
|
|
|
|
License: GPL3
|
|
Source0: %{name}-%{version}.tar.xz
|
|
|
|
Requires: bash
|
|
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
Some bash customizations
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
|
|
%build
|
|
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{_sysconfdir}/profile.d
|
|
install -p -m 755 -t %{buildroot}%{_sysconfdir}/profile.d *
|
|
|
|
|
|
%files
|
|
%{_sysconfdir}/profile.d
|
|
|
|
|
|
%changelog
|
|
* Sun May 7 2017 Daniel Demus <daniel-rpms@demus.dk> 0.1
|
|
- First packing
|