mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
Release 0.1.1
spec: updates
This commit is contained in:
parent
2c6b2f0b74
commit
5b2745498e
3 changed files with 35 additions and 4 deletions
25
Makefile.in
Normal file
25
Makefile.in
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
all:
|
||||||
|
ninja-build -C build
|
||||||
|
|
||||||
|
install:
|
||||||
|
ninja-build -C build install
|
||||||
|
|
||||||
|
clean:
|
||||||
|
ninja-build -C build clean
|
||||||
|
|
||||||
|
run:
|
||||||
|
SPA_PLUGIN_DIR=build/spa/plugins \
|
||||||
|
PIPEWIRE_MODULE_DIR=build \
|
||||||
|
PIPEWIRE_CONFIG_FILE=build/pipewire/daemon/pipewire.conf \
|
||||||
|
build/pipewire/daemon/pipewire
|
||||||
|
|
||||||
|
monitor:
|
||||||
|
SPA_PLUGIN_DIR=build/spa/plugins \
|
||||||
|
PIPEWIRE_MODULE_DIR=build/pipewire/modules/ \
|
||||||
|
build/pipewire/tools/pipewire-monitor
|
||||||
|
|
||||||
|
dist:
|
||||||
|
git archive --prefix=pipewire-@VERSION@/ -o pipewire-@VERSION@.tar.gz @TAG@
|
||||||
|
|
||||||
|
rpm: dist
|
||||||
|
rpmbuild -ta pipewire-@VERSION@.tar.gz
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
project('pipewire', 'c',
|
project('pipewire', 'c',
|
||||||
version : '0.1.0.1',
|
version : '0.1.1',
|
||||||
meson_version : '>= 0.36.0',
|
meson_version : '>= 0.36.0',
|
||||||
default_options : [ 'warning_level=1',
|
default_options : [ 'warning_level=1',
|
||||||
'c_std=gnu99',
|
'c_std=gnu99',
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,8 @@
|
||||||
|
|
||||||
Name: pipewire
|
Name: pipewire
|
||||||
Summary: Media Sharing Server
|
Summary: Media Sharing Server
|
||||||
Version: 0.1.0
|
Version: 0.1.1
|
||||||
Release: 2%{?snap:.%{snap}git%{shortcommit}}%{?dist}
|
Release: 1%{?snap:.%{snap}git%{shortcommit}}%{?dist}
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
URL: http://www.freedesktop.org/wiki/Software/PipeWire
|
URL: http://www.freedesktop.org/wiki/Software/PipeWire
|
||||||
%if 0%{?gitrel}
|
%if 0%{?gitrel}
|
||||||
|
|
@ -116,13 +116,14 @@ exit 0
|
||||||
%dir %{_sysconfdir}/pipewire/
|
%dir %{_sysconfdir}/pipewire/
|
||||||
#%dir %{_libdir}/pipewire/
|
#%dir %{_libdir}/pipewire/
|
||||||
|
|
||||||
%files libs-devel
|
%files devel
|
||||||
%{_libdir}/libpipewire-%{majorminor}.so
|
%{_libdir}/libpipewire-%{majorminor}.so
|
||||||
%{_libdir}/libpipewirecore-%{majorminor}.so
|
%{_libdir}/libpipewirecore-%{majorminor}.so
|
||||||
%{_libdir}/libspa-lib.so
|
%{_libdir}/libspa-lib.so
|
||||||
%{_includedir}/pipewire/
|
%{_includedir}/pipewire/
|
||||||
%{_includedir}/spa/
|
%{_includedir}/spa/
|
||||||
%{_libdir}/pkgconfig/libpipewire-%{majorminor}.pc
|
%{_libdir}/pkgconfig/libpipewire-%{majorminor}.pc
|
||||||
|
%{_libdir}/pkgconfig/libpipewirecore-%{majorminor}.pc
|
||||||
%{_libdir}/pkgconfig/libspa-%{majorminor}.pc
|
%{_libdir}/pkgconfig/libspa-%{majorminor}.pc
|
||||||
|
|
||||||
%files utils
|
%files utils
|
||||||
|
|
@ -132,6 +133,11 @@ exit 0
|
||||||
%{_bindir}/spa-inspect
|
%{_bindir}/spa-inspect
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 26 2017 Wim Taymans <wtaymans@redhat.com> - 0.1.1-1
|
||||||
|
- Update to 0.1.1
|
||||||
|
- Add dbus-1 to BuildRequires
|
||||||
|
- change libs-devel to -devel
|
||||||
|
|
||||||
* Wed Sep 9 2015 Wim Taymans <wtaymans@redhat.com> - 0.1.0-2
|
* Wed Sep 9 2015 Wim Taymans <wtaymans@redhat.com> - 0.1.0-2
|
||||||
- Fix BuildRequires to use pkgconfig, add all dependencies found in configure.ac
|
- Fix BuildRequires to use pkgconfig, add all dependencies found in configure.ac
|
||||||
- Add user and groups if needed
|
- Add user and groups if needed
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue