source: projects/specs/trunk/m/makeself/makeself-vl.spec @ 11828

Revision 11828, 3.3 KB checked in by ara_t, 5 years ago (diff)

makeself: initial build for Vine Linux

Line 
1Name:      makeself
2Version:   2.4.0
3Release:   1%{?dist}
4BuildArch: noarch
5Summary:   Make self-extractable archives on Unix
6Group:     Development/Tools
7
8License: GPLv2+
9URL:     http://%{name}.io/
10Source:  https://github.com/megastep/%{name}/archive/release-%{version}/%{name}-%{version}.tar.gz
11
12# This patch changes the path to the sourced header script
13Patch0: move_header.patch
14
15BuildRoot: %{_tmppath}/%{name}-%{version}-root
16
17
18%description
19makeself.sh is a shell script that generates a self-extractable
20tar.gz archive from a directory. The resulting file appears as a shell
21script, and can be launched as is. The archive will then uncompress
22itself to a temporary directory and an arbitrary command will be
23executed (for example an installation script). This is pretty similar
24to archives generated with WinZip Self-Extractor in the Windows world.
25
26
27%prep
28%setup -q -n %{name}-release-%{version}
29%patch0
30
31
32%build
33iconv --from-code=ISO-8859-1 --to-code=UTF-8 %{name}.1 | gzip > %{name}.1.gz
34
35
36%install
37mkdir -p %{buildroot}%{_bindir}
38mkdir -p %{buildroot}%{_libexecdir}
39mkdir -p %{buildroot}%{_mandir}/man1
40
41install -p -m755 %{name}.sh %{buildroot}%{_bindir}
42install -p -m644 %{name}-header.sh %{buildroot}%{_libexecdir}
43install -p -m644 %{name}.1.gz %{buildroot}%{_mandir}/man1
44ln -s %{name}.sh %{buildroot}%{_bindir}/%{name}
45
46
47%files
48%doc README.md COPYING %{name}.lsm
49%{_mandir}/man1/*
50%{_libexecdir}/*
51%{_bindir}/*
52
53
54%changelog
55* Fri Nov 02 2018 Toshiaki Ara <ara_t@384.jp> 2.4.0-1
56- initial build for Vine Linux
57
58* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-2
59- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
60
61* Mon Apr 30 2018 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 2.4.0-1
62- Bump version to 2.4.0
63- Change the Source URL to get %%{name}-%%{version}.tar.gz
64- Ship the script as makeself.sh as per upstream documentation
65- Add a symbolic link to the previous script name (just makeself)
66
67* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.1-2
68- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
69
70* Mon Aug 21 2017 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 2.3.1-1
71- Bump version to 2.3.1
72
73* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-2
74- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
75
76* Wed Feb 08 2017 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 2.3.0-1
77- Bump version to 2.3.0
78- Update the URL
79- Rename the patch
80- Use more macros
81- Require iconv
82- Install the LSM file
83
84* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.0-5
85- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
86
87* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-4
88- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
89
90* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-3
91- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
92
93* Wed Jul 31 2013 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 2.2.0-2
94- Preserve timestamps during installation
95
96* Sun Jul 07 2013 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 2.2.0-1
97- GPLv2 license update
98
99* Mon Jun 24 2013 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 2.2.0-1
100- Initial spec
Note: See TracBrowser for help on using the repository browser.