]> git.pld-linux.org Git - packages/innoextract.git/blob - innoextract.spec
105a77da2ec1c74af7167614f7b55764396359eb
[packages/innoextract.git] / innoextract.spec
1 Summary:        Tool to unpack installers created by Inno Setup
2 Summary(pl.UTF-8):      Narzędzie do rozpakowywania instalatorów tworzonych przez Inno Setup
3 Name:           innoextract
4 Version:        1.3
5 Release:        7
6 License:        BSD
7 Group:          Applications/Files
8 Source0:        http://downloads.sourceforge.net/innoextract/%{name}-%{version}.tar.gz
9 # Source0-md5:  a6b2662ebc182efa15e09f4281c231df
10 URL:            http://constexpr.org/innoextract/
11 BuildRequires:  boost-devel
12 BuildRequires:  cmake >= 2.8
13 BuildRequires:  libstdc++-devel
14 BuildRequires:  xz-devel
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 Inno Setup is a tool to create installers for Microsoft Windows
19 applications. innoextract allows to extract such installers under
20 non-windows systems without running the actual installer using WINE.
21 innoextract currently supports installers created by Inno Setup 1.2.10
22 to 5.5.3.
23
24 %description -l pl.UTF-8
25 Inno Setup to narzędzie do tworzenia instalatorów dla systemu
26 Microsoft Windows. innoextract pozwala na rozpakowywanie takich
27 instalatorów na innych systemach operacyjnych bez uruchamiania samego
28 instalatora przy użyciu WINE. innoextract obecnie obsługuje
29 instalatory utworzone przez Inno Setup w wersjach od 1.2.10 do 5.5.3.
30
31 %prep
32 %setup -q
33
34 %build
35 %cmake .
36
37 %{__make}
38
39 %install
40 rm -rf $RPM_BUILD_ROOT
41
42 %{__make} install \
43         DESTDIR=$RPM_BUILD_ROOT
44
45 %clean
46 rm -rf $RPM_BUILD_ROOT
47
48 %files
49 %defattr(644,root,root,755)
50 %doc CHANGELOG LICENSE README.md
51 %attr(755,root,root) %{_bindir}/innoextract
52 %{_mandir}/man1/innoextract.1*
This page took 0.046736 seconds and 2 git commands to generate.