From 494c058736bc9ecef98b7e94f885f2e029308be8 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 21:02:07 +0100 Subject: [PATCH] package created using the webbuild interface [release 20.08-1mamba;Wed Aug 19 2020] --- README.md | 2 ++ bwfmetaedit.spec | 75 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 bwfmetaedit.spec diff --git a/README.md b/README.md index ad97137..fcd2802 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # bwfmetaedit +BWF MetaEdit is a tool that supports embedding, validating, and exporting of metadata in Broadcast WAVE Format (BWF) files. It supports the FADGI Broadcast WAVE Metadata Embedding Guidelines. + diff --git a/bwfmetaedit.spec b/bwfmetaedit.spec new file mode 100644 index 0000000..6042288 --- /dev/null +++ b/bwfmetaedit.spec @@ -0,0 +1,75 @@ +Name: bwfmetaedit +Version: 20.08 +Release: 1mamba +Summary: A tool that supports embedding, validating, and exporting of metadata in Broadcast WAVE Format (BWF) files +Group: Graphical Desktop/Applications/Multimedia +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://mediaarea.net/BWFMetaEdit +Source: https://mediaarea.net/download/source/bwfmetaedit/%{version}/bwfmetaedit_%{version}.tar.xz +License: Public Domain +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: ldconfig +BuildRequires: libGL-devel +BuildRequires: libgcc +BuildRequires: libqt5-devel +BuildRequires: libstdc++6-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +BWF MetaEdit is a tool that supports embedding, validating, and exporting of metadata in Broadcast WAVE Format (BWF) files. It supports the FADGI Broadcast WAVE Metadata Embedding Guidelines. + +%debug_package + +%prep +%setup -q -n %{name} +cd Project/GNU/CLI +sh ./autogen + +cd ../../QtCreator +./prepare BINDIR=%{_bindir} + +%build +cd Project/GNU/CLI +%configure +%make + +cd ../../QtCreator +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +cd Project/GNU/CLI +%makeinstall + +cd ../../QtCreator +%makeinstall INSTALL_ROOT=%{buildroot} + +cd ../.. + +install -D -m 644 Source/Resource/Image/Logo/Logo.png %{buildroot}%{_datadir}/pixmaps/bwfmetaedit.png +install -D -m 644 Source/Resource/Image/Logo/Logo128.png %{buildroot}%{_datadir}/icons/hicolor/128x128/apps/bwfmetaedit.png +install -D -m 644 Project/GNU/GUI/bwfmetaedit-gui.desktop %{buildroot}%{_datadir}/applications/bwfmetaedit-gui.desktop +install -D -m 644 Project/GNU/GUI/bwfmetaedit-gui.kde4.desktop %{buildroot}%{_datadir}/kservices5/ServiceMenus/bwfmetaedit-gui.desktop +install -D -m 644 Project/GNU/GUI/bwfmetaedit-gui.metainfo.xml %{buildroot}%{_datadir}/appdata/bwfmetaedit-gui.appdata.xml + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/bwfmetaedit +%{_bindir}/bwfmetaedit-gui +%{_datadir}/appdata/bwfmetaedit-gui.appdata.xml +%{_datadir}/applications/bwfmetaedit-gui.desktop +%{_datadir}/icons/hicolor/128x128/apps/bwfmetaedit.png +%{_datadir}/kservices5/ServiceMenus/bwfmetaedit-gui.desktop +%{_datadir}/pixmaps/bwfmetaedit.png +%doc License.html + +%changelog +* Wed Aug 19 2020 Silvan Calarco 20.08-1mamba +- package created using the webbuild interface