]> git.pld-linux.org Git - packages/synce-orange.git/blob - synce-orange.spec
- updated gettext BR
[packages/synce-orange.git] / synce-orange.spec
1 %define         pkgname orange
2 Summary:        SynCE Orange - a tool capable to get installable MS Cabinet Files from installers
3 Summary(pl.UTF-8):      SynCE Orange - narzędzie zdolne do wydobycia plików MS Cabinet z instalatorów
4 Name:           synce-%{pkgname}
5 Version:        0.4
6 Release:        4
7 License:        MIT
8 Group:          Applications
9 Source0:        http://downloads.sourceforge.net/synce/lib%{pkgname}-%{version}.tar.gz
10 # Source0-md5:  40e9ac3de389c74a60007f7493e072a5
11 URL:            http://www.synce.org/
12 BuildRequires:  autoconf >= 2.50
13 BuildRequires:  automake >= 1.4
14 BuildRequires:  gettext-tools
15 BuildRequires:  libtool
16 BuildRequires:  pkgconfig
17 BuildRequires:  rpmbuild(macros) >= 1.213
18 BuildRequires:  synce-dynamite-libs-devel
19 BuildRequires:  synce-libsynce-devel
20 BuildRequires:  synce-unshield-libs-devel
21 BuildRequires:  zlib-devel
22 Requires:       %{name}-libs = %{version}-%{release}
23 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
25 %description
26 Orange is a tool for squeezing out juicy installable Microsoft Cabinet
27 Files from self-extracting installers for Microsoft Windows and some
28 other installer file formats.
29
30 %description -l pl.UTF-8
31 Orange jest narzędziem umożliwiającym wydobycie z samorozpakowujących
32 się instalatorów przeznaczonych dla Microsoft Windows plików Microsoft
33 Cabinet.
34
35 %package libs
36 Summary:        The Orange library
37 Summary(pl.UTF-8):      Biblioteka Orange
38 Group:          Libraries
39
40 %description libs
41 The Orange library.
42
43 %description libs -l pl.UTF-8
44 Biblioteka Orange.
45
46 %package libs-devel
47 Summary:        Header files for the Orange library
48 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki Orange
49 Group:          Development/Libraries
50 Requires:       %{name}-libs = %{version}-%{release}
51 Requires:       synce-dynamite-libs-devel
52 Requires:       synce-libsynce-devel
53 Requires:       synce-unshield-libs-devel
54
55 %description libs-devel
56 Header files for the Orange library.
57
58 %description libs-devel -l pl.UTF-8
59 Pliki nagłówkowe biblioteki Orange.
60
61 %package libs-static
62 Summary:        Static Orange library
63 Summary(pl.UTF-8):      Statyczna biblioteka Orange
64 Group:          Development/Libraries
65 Requires:       %{name}-libs-devel = %{version}-%{release}
66
67 %description libs-static
68 Static Orange library.
69
70 %description libs-static -l pl.UTF-8
71 Statyczna biblioteka Orange.
72
73 %prep
74 %setup -q -n lib%{pkgname}-%{version}
75
76 %build
77 %{__libtoolize}
78 %{__aclocal} -I m4
79 %{__autoconf}
80 %{__autoheader}
81 %{__automake}
82 %configure
83
84 %{__make}
85
86 %install
87 rm -rf $RPM_BUILD_ROOT
88
89 %{__make} install \
90         DESTDIR=$RPM_BUILD_ROOT
91
92 %clean
93 rm -rf $RPM_BUILD_ROOT
94
95 %post   libs -p /sbin/ldconfig
96 %postun libs -p /sbin/ldconfig
97
98 %files
99 %defattr(644,root,root,755)
100 %doc LICENSE
101 %attr(755,root,root) %{_bindir}/*
102 %{_mandir}/man1/orange.1*
103
104 %files libs
105 %defattr(644,root,root,755)
106 %attr(755,root,root) %{_libdir}/liborange.so.*.*.*
107 %attr(755,root,root) %ghost %{_libdir}/liborange.so.?
108
109 %files libs-devel
110 %defattr(644,root,root,755)
111 %attr(755,root,root) %{_libdir}/liborange.so
112 %{_libdir}/liborange.la
113 %{_pkgconfigdir}/liborange.pc
114 %{_includedir}/liborange.h
115 %{_includedir}/liborange_stub.h
116
117 %files libs-static
118 %defattr(644,root,root,755)
119 %{_libdir}/liborange.a
This page took 0.065742 seconds and 3 git commands to generate.