]> git.pld-linux.org Git - packages/freealut.git/blob - freealut.spec
- updated to 1.1.0
[packages/freealut.git] / freealut.spec
1 Summary:        Free implementation of OpenAL's ALUT standard
2 Summary(pl):    Wolnodostêpna implementacja standardu ALUT OpenAL-a
3 Name:           freealut
4 Version:        1.1.0
5 Release:        1
6 License:        LGPL
7 Group:          Libraries
8 Source0:        http://www.openal.org/openal_webstf/downloads/%{name}-%{version}.tar.gz
9 # Source0-md5:  e089b28a0267faabdb6c079ee173664a
10 URL:            http://www.openal.org/
11 BuildRequires:  OpenAL-devel >= 0.0.8-1
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 Free implementation of ALUT (OpenAL Utility Toolkit) standard.
16
17 %description -l pl
18 Wolnodostêpna implementacja standartu ALUT (OpenAL Utility Toolkit).
19
20 %package devel
21 Summary:        Headers for freealut
22 Summary(pl):    Pliki nag³ówkowe do freealuta
23 Group:          Development/Libraries
24 Requires:       %{name} = %{version}-%{release}
25 Requires:       OpenAL-devel >= 0.0.8-1
26
27 %description devel
28 freealut header files.
29
30 %description devel -l pl
31 Pliki nag³ówkowe freealuta.
32
33 %package static
34 Summary:        Static alut library
35 Summary(pl):    Statyczna biblioteka alut
36 Group:          Development/Libraries
37 Requires:       %{name}-devel = %{version}-%{release}
38
39 %description static
40 Static alut library.
41
42 %description static -l pl
43 Biblioteka alut do konsolidacji statycznej.
44
45 %prep
46 %setup -q
47
48 %build
49 %configure
50
51 %{__make}
52
53 %install
54 rm -rf $RPM_BUILD_ROOT
55 install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
56
57 %{__make} install \
58         DESTDIR=$RPM_BUILD_ROOT
59
60 install examples/*.c $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
61
62 %clean
63 rm -rf $RPM_BUILD_ROOT
64
65 %post   -p /sbin/ldconfig
66 %postun -p /sbin/ldconfig
67
68 %files
69 %defattr(644,root,root,755)
70 %doc AUTHORS ChangeLog NEWS README
71 %attr(755,root,root) %{_libdir}/libalut.so.*.*.*
72
73 %files devel
74 %defattr(644,root,root,755)
75 %doc doc/*
76 %attr(755,root,root) %{_bindir}/*-config
77 %attr(755,root,root) %{_libdir}/libalut.so
78 %{_libdir}/libalut.la
79 %{_examplesdir}/%{name}-%{version}
80 %{_includedir}/AL/*
81 %{_pkgconfigdir}/*
82
83 %files static
84 %defattr(644,root,root,755)
85 %{_libdir}/libalut.a
This page took 0.070494 seconds and 4 git commands to generate.