forked from pool/gupnp
This commit is contained in:
commit
eb5a09bc41
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
gupnp-0.12.8.tar.bz2
Normal file
3
gupnp-0.12.8.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ef97bbba647c9a3f495d47be8dcf05b30141a9690422b6c991b23a113b065e99
|
||||||
|
size 347739
|
5
gupnp.changes
Normal file
5
gupnp.changes
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jun 13 23:00:12 CEST 2009 - vuntz@novell.com
|
||||||
|
|
||||||
|
- Initial package.
|
||||||
|
|
105
gupnp.spec
Normal file
105
gupnp.spec
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
#
|
||||||
|
# spec file for package gupnp (Version 0.12.8)
|
||||||
|
#
|
||||||
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Name: gupnp
|
||||||
|
Version: 0.12.8
|
||||||
|
Release: 2
|
||||||
|
Summary: Implementation of the UPnP specification
|
||||||
|
License: LGPL v2 or later
|
||||||
|
Group: Development/Libraries/C and C++
|
||||||
|
Url: http://www.gupnp.org/
|
||||||
|
Source: %{name}-%{version}.tar.bz2
|
||||||
|
BuildRequires: libsoup-devel
|
||||||
|
BuildRequires: libgssdp-devel
|
||||||
|
BuildRequires: libuuid-devel
|
||||||
|
BuildRequires: libxml2-devel
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
|
%description
|
||||||
|
GUPnP implements the UPnP specification: resource announcement and
|
||||||
|
discovery, description, control, event notification, and presentation
|
||||||
|
(GUPnP includes basic web server functionality through libsoup). GUPnP
|
||||||
|
does not include helpers for construction or control of specific
|
||||||
|
standardized resources (e.g. MediaServer); this is left for higher level
|
||||||
|
libraries utilizing the GUPnP framework.
|
||||||
|
|
||||||
|
%package -n libgupnp-1_0-2
|
||||||
|
License: LGPL v2 or later
|
||||||
|
Summary: Implementation of the UPnP specification
|
||||||
|
Group: Development/Libraries/C and C++
|
||||||
|
|
||||||
|
%description -n libgupnp-1_0-2
|
||||||
|
GUPnP implements the UPnP specification: resource announcement and
|
||||||
|
discovery, description, control, event notification, and presentation
|
||||||
|
(GUPnP includes basic web server functionality through libsoup). GUPnP
|
||||||
|
does not include helpers for construction or control of specific
|
||||||
|
standardized resources (e.g. MediaServer); this is left for higher level
|
||||||
|
libraries utilizing the GUPnP framework.
|
||||||
|
|
||||||
|
%package -n libgupnp-devel
|
||||||
|
License: LGPL v2 or later
|
||||||
|
Summary: Implementation of the UPnP specification - Development Files
|
||||||
|
Group: Development/Libraries/C and C++
|
||||||
|
Requires: libgupnp-1_0-2 = %{version}
|
||||||
|
Requires: libsoup-devel
|
||||||
|
Requires: libgssdp-devel
|
||||||
|
Requires: libxml2-devel
|
||||||
|
|
||||||
|
%description -n libgupnp-devel
|
||||||
|
GUPnP implements the UPnP specification: resource announcement and
|
||||||
|
discovery, description, control, event notification, and presentation
|
||||||
|
(GUPnP includes basic web server functionality through libsoup). GUPnP
|
||||||
|
does not include helpers for construction or control of specific
|
||||||
|
standardized resources (e.g. MediaServer); this is left for higher level
|
||||||
|
libraries utilizing the GUPnP framework.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
%configure --disable-static
|
||||||
|
%__make %{?jobs:-j%jobs}
|
||||||
|
|
||||||
|
%install
|
||||||
|
%makeinstall
|
||||||
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
|
%post -n libgupnp-1_0-2 -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%postun -n libgupnp-1_0-2 -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%files -n libgupnp-1_0-2
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc AUTHORS ChangeLog COPYING NEWS README
|
||||||
|
%{_libdir}/*.so.*
|
||||||
|
|
||||||
|
%files -n libgupnp-devel
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_bindir}/gupnp-binding-tool
|
||||||
|
%{_includedir}/%{name}-1.0
|
||||||
|
%{_libdir}/*.so
|
||||||
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
%dir %{_datadir}/gtk-doc
|
||||||
|
%dir %{_datadir}/gtk-doc/html
|
||||||
|
%{_datadir}/gtk-doc/html/%{name}
|
||||||
|
|
||||||
|
%changelog
|
Loading…
Reference in New Issue
Block a user