-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrpm-hacks.spec
45 lines (38 loc) · 1.01 KB
/
rpm-hacks.spec
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
Name: rpm-hacks
Version: 2023.3
Release: 1
Summary: RPM hacks utilities
Group: Applications/Engineering
License: MIT License
Source0: %{name}-%{version}.tar.gz
Requires: dpkg
Requires: funionfs
Requires: fakechroot
Requires: fuse
Requires: curl
Requires: wget
BuildArch: noarch
%description
These are useful shell scripts for making or modifying RPM packages:
deb2spec - produce a spec file from a .deb, Debian package file
rpm2spec - produce a spec file from a .rpm package
rpmjail - made with FUSE for running RPM in a jailed environment
b64shar - make any file into a base64-encoded shell self-extracting archive
ar2spec - produce a spec file from a software archive
%prep
%setup -q
%build
make
%install
rm -rf $RPM_BUILD_ROOT
make DESTDIR=$RPM_BUILD_ROOT install
%clean
rm -rf $RPM_BUILD_ROOT
%files
%doc README
%{_bindir}/*
%changelog
* Sun Feb 26 2023 Wei-Lun Chao <[email protected]> - 2023.3
- Rebuilt for Fedora
* Thu Dec 20 2012 Robert Wei <[email protected]> - 2012.12
- First build