diff options
author | Wim Taymans <wtaymans@redhat.com> | 2017-06-26 13:06:14 +0200 |
---|---|---|
committer | Wim Taymans <wtaymans@redhat.com> | 2017-06-26 13:13:21 +0200 |
commit | 5b2745498edf0f1080414d264bc9829ee2f5ee2f (patch) | |
tree | 1e5f198d1633c081598aecb7c7b06f7bad614027 | |
parent | 2c6b2f0b74333dec6ddf88be7e75f8b487f04d53 (diff) |
Release 0.1.10.1.1
spec: updates
-rw-r--r-- | Makefile.in | 25 | ||||
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | pipewire.spec | 12 |
3 files changed, 35 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in new file mode 100644 index 00000000..e6050354 --- /dev/null +++ b/Makefile.in @@ -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 diff --git a/meson.build b/meson.build index 12777b95..f05f3ee2 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('pipewire', 'c', - version : '0.1.0.1', + version : '0.1.1', meson_version : '>= 0.36.0', default_options : [ 'warning_level=1', 'c_std=gnu99', diff --git a/pipewire.spec b/pipewire.spec index 0e3af932..7aae0a98 100644 --- a/pipewire.spec +++ b/pipewire.spec @@ -13,8 +13,8 @@ Name: pipewire Summary: Media Sharing Server -Version: 0.1.0 -Release: 2%{?snap:.%{snap}git%{shortcommit}}%{?dist} +Version: 0.1.1 +Release: 1%{?snap:.%{snap}git%{shortcommit}}%{?dist} License: LGPLv2+ URL: http://www.freedesktop.org/wiki/Software/PipeWire %if 0%{?gitrel} @@ -116,13 +116,14 @@ exit 0 %dir %{_sysconfdir}/pipewire/ #%dir %{_libdir}/pipewire/ -%files libs-devel +%files devel %{_libdir}/libpipewire-%{majorminor}.so %{_libdir}/libpipewirecore-%{majorminor}.so %{_libdir}/libspa-lib.so %{_includedir}/pipewire/ %{_includedir}/spa/ %{_libdir}/pkgconfig/libpipewire-%{majorminor}.pc +%{_libdir}/pkgconfig/libpipewirecore-%{majorminor}.pc %{_libdir}/pkgconfig/libspa-%{majorminor}.pc %files utils @@ -132,6 +133,11 @@ exit 0 %{_bindir}/spa-inspect %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 - Fix BuildRequires to use pkgconfig, add all dependencies found in configure.ac - Add user and groups if needed |