]> git.pld-linux.org Git - packages/flessd.git/blame - flessd.spec
- converted to UTF-8
[packages/flessd.git] / flessd.spec
CommitLineData
7a02c19e 1Summary: FLESSD - Free Library for Effects and Synthetic Sample Dynamics
a708c5ee 2Summary(pl.UTF-8): FLESSD - wolnodostępna biblioteka do efektów i dźwięku syntetycznego
7a02c19e
JB
3Name: flessd
4Version: 0.0
5Release: 1
6License: WTFPL
7Group: Libraries
8Source0: http://sam.zoy.org/flessd/%{name}-%{version}.tar.gz
9# Source0-md5: ec3ecdc01a51eebbb7171398f441afa0
10URL: http://sam.zoy.org/flessd/
11BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13%description
14FLESSD is a free reimplementation of FMOD (http://www.fmod.org/), a
15very commonly used music playing and sound effects library.
16Unfortunately FMOD is not free, and its author is extremely reluctant
17to opensourcing it. Moreover, it only supports a limited number of
18platforms. FLESSD aims to fix these two problems.
19
a708c5ee
JR
20%description -l pl.UTF-8
21FLESSD to wolnodostępna reimplementacja biblioteki FMOD
7a02c19e 22(http://www.fmod.org/) - popularnej biblioteki do odtwarzania muzyki i
a708c5ee
JR
23efektów dźwiękowych. Niestety FMOD nie jest wolnodostępną biblioteką,
24a autor jest bardzo oporny, jeśli chodzi o uwolnienie źródeł. Co
25więcej FMOD obsługuje tylko bardzo ograniczoną liczbę platform. Celem
26FLESSD jest usunięcie tych problemów.
7a02c19e
JB
27
28%package devel
29Summary: Header files for FLESSD library
a708c5ee 30Summary(pl.UTF-8): Pliki nagłówkowe biblioteki FLESSD
7a02c19e
JB
31Group: Development/Libraries
32Requires: %{name} = %{version}-%{release}
33
34%description devel
35Header files for FLESSD library.
36
a708c5ee
JR
37%description devel -l pl.UTF-8
38Pliki nagłówkowe biblioteki FLESSD.
7a02c19e
JB
39
40%package static
41Summary: Static FLESSD library
a708c5ee 42Summary(pl.UTF-8): Statyczna biblioteka FLESSD
7a02c19e
JB
43Group: Development/Libraries
44Requires: %{name}-devel = %{version}-%{release}
45
46%description static
47Static FLESSD library.
48
a708c5ee 49%description static -l pl.UTF-8
7a02c19e
JB
50Statyczna biblioteka FLESSD.
51
52%prep
53%setup -q
54
55%build
56%configure
57%{__make}
58
59%install
60rm -rf $RPM_BUILD_ROOT
61
62%{__make} install \
63 DESTDIR=$RPM_BUILD_ROOT
64
65%clean
66rm -rf $RPM_BUILD_ROOT
67
68%post -p /sbin/ldconfig
69%postun -p /sbin/ldconfig
70
71%files
72%defattr(644,root,root,755)
73%doc AUTHORS COPYING NOTES README
74%attr(755,root,root) %{_libdir}/libfmod-*.so.*.*.*
75
76%files devel
77%defattr(644,root,root,755)
78%attr(755,root,root) %{_libdir}/libfmod-*.so
79%{_libdir}/libfmod-*.la
80%{_includedir}/fmod*.h
81%{_includedir}/flessd
82
83%files static
84%defattr(644,root,root,755)
85%{_libdir}/libfmod-*.a
This page took 0.087097 seconds and 4 git commands to generate.