forked from pool/alure
Accepting request 500842 from home:Mailaender:branches:games
prepare for a Factory submission OBS-URL: https://build.opensuse.org/request/show/500842 OBS-URL: https://build.opensuse.org/package/show/games/alure?expand=0&rev=3
This commit is contained in:
parent
0f9cdb3a0d
commit
d27e077787
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jun 3 11:59:24 UTC 2017 - mailaender@opensuse.org
|
||||||
|
|
||||||
|
- Implement shared library policy
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu May 4 04:58:31 UTC 2017 - buckyballreaction@gmail.com
|
Thu May 4 04:58:31 UTC 2017 - buckyballreaction@gmail.com
|
||||||
|
|
||||||
|
27
alure.spec
27
alure.spec
@ -20,8 +20,8 @@
|
|||||||
Name: alure
|
Name: alure
|
||||||
Version: 1.2
|
Version: 1.2
|
||||||
Release: 0
|
Release: 0
|
||||||
# ALURE code is LGPL-2.0+; note -devel subpackage has its own license tag
|
|
||||||
Summary: Audio Library Tools REloaded
|
Summary: Audio Library Tools REloaded
|
||||||
|
# ALURE code is LGPL-2.0+; note -devel subpackage has its own license tag
|
||||||
License: LGPL-2.0+
|
License: LGPL-2.0+
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Url: http://kcat.strangesoft.net/alure.html
|
Url: http://kcat.strangesoft.net/alure.html
|
||||||
@ -48,17 +48,25 @@ applications. This includes device enumeration and initialization,
|
|||||||
file loading, and streaming.
|
file loading, and streaming.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
# Devel doc includes some files under GPLv2+ from NaturalDocs
|
|
||||||
Summary: Development files for %{name}
|
Summary: Development files for %{name}
|
||||||
|
# Devel doc includes some files under GPLv2+ from NaturalDocs
|
||||||
License: LGPL-2.0+ and GPL-2.0+
|
License: LGPL-2.0+ and GPL-2.0+
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: %{name} = %{version}
|
Requires: %{name} = %{version}
|
||||||
#Requires: pkgconfig
|
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
The %{name}-devel package contains libraries and header files for
|
The %{name}-devel package contains libraries and header files for
|
||||||
developing applications that use %{name}.
|
developing applications that use %{name}.
|
||||||
|
|
||||||
|
%package -n libalure1
|
||||||
|
Summary: Shared library for Alure
|
||||||
|
License: LGPL-2.0+
|
||||||
|
Group: System/Libraries
|
||||||
|
|
||||||
|
%description -n libalure1
|
||||||
|
ALURE is a utility library to help manage common tasks with OpenAL
|
||||||
|
applications.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0
|
%patch0
|
||||||
@ -79,19 +87,18 @@ rm -rf %{buildroot}%{_datadir}/doc/%{name}/html
|
|||||||
# fix encoding
|
# fix encoding
|
||||||
sed -i 's/\r$//' docs/html/javascript/main.js docs/html/styles/1.css
|
sed -i 's/\r$//' docs/html/javascript/main.js docs/html/styles/1.css
|
||||||
|
|
||||||
%clean
|
%post -n libalure1 -p /sbin/ldconfig
|
||||||
rm -rf %{buildroot}
|
%postun -n libalure1 -p /sbin/ldconfig
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc COPYING
|
%doc COPYING
|
||||||
%{_libdir}/*.so.*
|
|
||||||
%{_bindir}/alure*
|
%{_bindir}/alure*
|
||||||
|
|
||||||
|
%files -n libalure1
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_libdir}/libalure.so.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc docs/html examples
|
%doc docs/html examples
|
||||||
|
Loading…
Reference in New Issue
Block a user