source: spec/trunk/SPECS/cube.spec@ 1608

Last change on this file since 1608 was 1608, checked in by Silvan Scherrer, 7 years ago

spec: cube: Release version 3.0-1.

File size: 1.1 KB
Line 
1#disable lxlite strip (removes rexx code)
2%define __os_install_post %{nil}
3
4Summary: REXX procedure used to modify a CONFIG.SYS-like ASCII file
5Name: cube
6Version: 3.0
7Release: 1%{?dist}
8License: none
9URL: http://www3.sympatico.ca/gjarviseng/cube/
10Group: System Environment/Shells
11Vendor: bww bitwise works GmbH
12
13%scm_source svn http://svn.netlabs.org/repos/cube/trunk 9
14
15BuildRequires: rexx_exe
16
17
18%description
19CUBE is a REXX procedure used to modify a CONFIG.SYS-like ASCII file
20(the Target File), based on a set of CUBE's commands (the Procedure File).
21
22
23%prep
24%scm_setup
25
26
27%build
28rexx2vio cube.cmd cube.exe
29
30
31%install
32for f in *.exe ; do
33 install -p -m 0755 -D $f $RPM_BUILD_ROOT%{_bindir}/$f
34done
35
36
37%clean
38rm -rf %{buildroot}
39
40
41%files
42%defattr(-,root,root)
43%doc cube.doc cube.ref
44%{_bindir}/cube.exe
45
46
47%changelog
48* Mon Mar 04 2019 Silvan Scherrer <silvan.scherrer@aroa> 3.0-1
49- fixes ticket #2 (courtesy of RLW)
50
51* Fri Jun 15 2018 Silvan Scherrer <silvan.scherrer@aroa> 2.8-1
52- gather all available sources together and join them
53- install documentation
54- use %scm_ and friends macros
Note: See TracBrowser for help on using the repository browser.