diff --git a/README.md b/README.md index 9e03ca7..f4e734a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # mpvqt +MpvQt is a libmpv wrapper for QtQuick2 and QML. + diff --git a/mpvqt.spec b/mpvqt.spec new file mode 100644 index 0000000..d38f6d3 --- /dev/null +++ b/mpvqt.spec @@ -0,0 +1,84 @@ +%define framework %(echo %name | sed "s|^kf6-||") +%define majver %(echo %version | cut -d. -f1-2) + +Name: mpvqt +Version: 1.0.0 +Release: 1mamba +Summary: A libmpv wrapper for QtQuick2 and QML. +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://kde.org +Source: https://download.kde.org/stable/mpvqt/mpvqt-%{version}.tar.xz +License: LGPL, MIT, BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libglvnd-devel +BuildRequires: libmpv-devel +BuildRequires: libstdc++6-devel +BuildRequires: qt6-qtbase-devel +BuildRequires: qt6-qtdeclarative-devel +## AUTOBUILDREQ-END +BuildRequires: cmake +BuildRequires: kf6-rpm-macros +BuildRequires: extra-cmake-modules +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description +MpvQt is a libmpv wrapper for QtQuick2 and QML. + +%package -n lib%{name} +Group: System/Libraries +Summary: A libmpv wrapper for QtQuick2 and QML. + +%description -n lib%{name} +MpvQt is a libmpv wrapper for QtQuick2 and QML. +This package contains shared libraries for %{name}. + +%package -n lib%{name}-devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + +%debug_package + +%prep +%setup -q + +%build +%cmake_kf6 + +%cmake_build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%cmake_install + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -n lib%{name} -p /sbin/ldconfig +%postun -n lib%{name} -p /sbin/ldconfig + +%files -n lib%{name} +%defattr(-,root,root) +%{_libdir}/libMpvQt.so.* +%doc LICENSES + +%files -n lib%{name}-devel +%defattr(-,root,root) +%dir %{_includedir}/MpvQt +%{_includedir}/MpvQt/* +%{_libdir}/libMpvQt.so +%dir %{_libdir}/cmake/MpvQt +%{_libdir}/cmake/MpvQt/FindLibmpv.cmake +%{_libdir}/cmake/MpvQt/MpvQt*.cmake + +%changelog +* Sun Mar 10 2024 Silvan Calarco 1.0.0-1mamba +- package created using the webbuild interface