]> git.pld-linux.org Git - projects/template-specs.git/blame - lib.spec
- up
[projects/template-specs.git] / lib.spec
CommitLineData
3cb1cd3d 1#
66df3cad
ER
2# Conditional build:
3%bcond_without apidocs # do not build and package API docs
aed9d573 4%bcond_without static_libs # don't build static libraries
66df3cad 5#
f9986cd5 6Summary: -
ce39d734 7Summary(pl.UTF-8): -
3f8f5e5b
ER
8Name: ---
9Version: 0.1
10Release: 0.1
f9986cd5
JB
11License: - (enter GPL/LGPL/BSD/BSD-like/other license name here)
12Group: Libraries
13Source0: %{name}-%{version}.tar.gz
14# Source0-md5: -
3f8f5e5b
ER
15#Patch0: %{name}-what.patch
16#URL: -
17#BuildRequires: -
18#Requires(postun): -
19#Requires(pre,post): -
20#Requires(preun): -
21#Requires: -
22#Provides: -
23#Obsoletes: -
24#Conflicts: -
f9986cd5
JB
25BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
a1a32384
ER
27# do not keep them in newly created specs
28# these are only here to help fixing quickly broken specs
29%define filterout_ld -Wl,--no-copy-dt-needed-entries
30%define filterout_ld -Wl,--as-needed
31
20667fb2
ER
32# Ignore file in __spec_install_post_check_so
33BuildRequires: rpmbuild(macros) >= 1.583
34%define skip_post_check_so libunresolved.so.*
35
36
f9986cd5
JB
37%description
38
3f8f5e5b 39#%description -l pl.UTF-8
f9986cd5
JB
40
41%package devel
42Summary: Header files for FOO library
ce39d734 43Summary(pl.UTF-8): Pliki nagłówkowe biblioteki FOO
f9986cd5 44Group: Development/Libraries
d7dd7729 45Requires: %{name} = %{version}-%{release}
f9986cd5
JB
46
47%description devel
48Header files for FOO library.
49
9be49f18
JR
50%description devel -l pl.UTF-8
51Pliki nagłówkowe biblioteki FOO.
f9986cd5
JB
52
53%package static
54Summary: Static FOO library
ce39d734 55Summary(pl.UTF-8): Statyczna biblioteka FOO
f9986cd5 56Group: Development/Libraries
d7dd7729 57Requires: %{name}-devel = %{version}-%{release}
f9986cd5
JB
58
59%description static
60Static FOO library.
61
9be49f18 62%description static -l pl.UTF-8
f9986cd5
JB
63Statyczna biblioteka FOO.
64
66df3cad
ER
65%package apidocs
66Summary: FOO API documentation
9fcce7f1 67Summary(pl.UTF-8): Dokumentacja API biblioteki FOO
66df3cad
ER
68Group: Documentation
69
70%description apidocs
71API and internal documentation for FOO library.
72
3cb1cd3d
JB
73%description apidocs -l pl.UTF-8
74Dokumentacja API biblioteki FOO.
75
f9986cd5
JB
76%prep
77%setup -q
1c854c4b 78#%patch0 -p1
f9986cd5
JB
79
80%build
c42a30cf
JB
81# if ac/am/lt/* rebuilding is necessary, do it in this order and add
82# appropriate BuildRequires
83#%{__libtoolize}
84#%{__aclocal}
85#%{__autoconf}
86#%{__autoheader}
87#%{__automake}
f6de6810
ER
88%configure \
89 %{!?with_static_libs:--disable-static}
f9986cd5
JB
90%{__make}
91
92%install
93rm -rf $RPM_BUILD_ROOT
94# create directories if necessary
95#install -d $RPM_BUILD_ROOT
96
97%{__make} install \
98 DESTDIR=$RPM_BUILD_ROOT
99
100%clean
101rm -rf $RPM_BUILD_ROOT
102
103%post -p /sbin/ldconfig
104%postun -p /sbin/ldconfig
105
106%files
107%defattr(644,root,root,755)
108%doc AUTHORS CREDITS ChangeLog NEWS README THANKS TODO
109%attr(755,root,root) %{_bindir}/*
f6de6810 110%attr(755,root,root) %{_libdir}/libFOO.so.*.*.*
f9986cd5
JB
111%{_datadir}/%{name}
112
113%files devel
114%defattr(644,root,root,755)
115%doc devel-doc/*
f6de6810
ER
116%{_libdir}/libFOO.so
117%{_libdir}/libFOO.la
f9986cd5 118%{_includedir}/foo
f6de6810
ER
119%{_aclocaldir}/FOO.m4
120%{_pkgconfigdir}/FOO.pc
f9986cd5 121
f6de6810 122%if %{with static_libs}
f9986cd5
JB
123%files static
124%defattr(644,root,root,755)
f6de6810
ER
125%{_libdir}/libFOO.a
126%endif
66df3cad 127
a5f7d790 128%if %{with apidocs}
66df3cad
ER
129%files apidocs
130%defattr(644,root,root,755)
131%doc apidocs/*
a5f7d790 132%endif
This page took 0.490811 seconds and 4 git commands to generate.