Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[f39] add: libaudec (#1873) #1887

Merged
merged 1 commit into from
Aug 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions anda/lib/audec/anda.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
project pkg {
rpm {
spec = "libaudec.spec"
}
}
12 changes: 12 additions & 0 deletions anda/lib/audec/libaudec.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff -uraN libaudec-v0.2.2/meson.build omv-libaudec-v0.2.2/meson.build
--- libaudec-v0.2.2/meson.build 2020-05-16 13:50:13.000000000 +0200
+++ omv-libaudec-v0.2.2/meson.build 2020-07-20 12:41:48.461809598 +0200
@@ -212,8 +212,6 @@
install: not meson.is_subproject(),
)

-subdir('tests')
-
summary = [
'',
'------',
51 changes: 51 additions & 0 deletions anda/lib/audec/libaudec.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
%global _desc %{expand:
libaudec (lib audio decoder) is a wrapper library over ffmpeg, sndfile and
libsamplerate for reading and resampling audio files.
}

Name: libaudec
Version: 0.3.4
Release: 1%?dist
Summary: libaudec (lib audio decoder) is a wrapper library over ffmpeg, sndfile and libsamplerate for reading and resampling audio files
License: AGPL-3.0-or-later
URL: https://git.sr.ht/~alextee/libaudec
Source0: %url/archive/v%version.tar.gz
Patch0: libaudec.patch
BuildRequires: cmake meson ninja-build gcc
BuildRequires: pkgconfig(samplerate)
BuildRequires: pkgconfig(sndfile)
BuildRequires: ffmpeg-free-devel

%description %_desc

%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}

%description devel %_desc
This package contains the development files for the %name package.

%prep
%setup -q -n libaudec-v%{version}
%ifarch %{ix86} %{arm}
%autopatch -p1
rm -r tests
%endif

%build
%meson
%meson_build

%install
%meson_install

%files
%doc README.md
%license COPYING COPYING.GPL3
%_bindir/audec

%files devel
%_includedir/audec/audec.h
%_libdir/libaudec.a
%_libdir/pkgconfig/audec.pc
%_libdir/libaudec.so
Loading