2022-08-19 14:12:51 +00:00
|
|
|
Name: twolame
|
2022-08-19 16:39:47 +00:00
|
|
|
Version: 0.4.0
|
2024-10-29 16:17:22 +00:00
|
|
|
Release: 6%{?dist}
|
2022-08-19 14:12:51 +00:00
|
|
|
Summary: Optimized MPEG Audio Layer 2 encoding library based on tooLAME
|
2018-01-16 14:57:07 +00:00
|
|
|
# build-scripts/install-sh is MIT/X11, build-scripts/{libtool.m4, ltmain.sh} are GPLv2+
|
2023-10-13 10:57:24 +00:00
|
|
|
License: LGPL-2.1-or-later
|
2022-08-19 14:12:51 +00:00
|
|
|
URL: http://www.twolame.org/
|
2018-01-16 14:57:07 +00:00
|
|
|
|
2022-08-19 16:39:47 +00:00
|
|
|
Source: http://downloads.sourceforge.net/twolame/%{name}-%{version}.tar.gz
|
2022-08-19 14:12:51 +00:00
|
|
|
|
|
|
|
BuildRequires: autoconf
|
|
|
|
BuildRequires: automake
|
|
|
|
BuildRequires: make
|
2018-07-09 17:06:52 +00:00
|
|
|
BuildRequires: gcc
|
2022-08-19 14:12:51 +00:00
|
|
|
BuildRequires: libtool
|
|
|
|
BuildRequires: pkgconfig(sndfile) >= 1.0.0
|
2018-01-16 14:57:07 +00:00
|
|
|
|
|
|
|
%description
|
2022-08-19 14:12:51 +00:00
|
|
|
TwoLAME is an optimized MPEG Audio Layer 2 (MP2) encoder. It should be able to
|
|
|
|
be used as a drop-in replacement for LAME (a MPEG Layer 3 encoder). The frontend
|
|
|
|
takes very similar command line options to LAME, and the backend library has a
|
|
|
|
very similar API to LAME.
|
2018-01-16 14:57:07 +00:00
|
|
|
|
|
|
|
This package contains the command line frontend.
|
|
|
|
|
|
|
|
%package libs
|
2022-08-19 14:12:51 +00:00
|
|
|
Summary: TwoLAME is an optimized MPEG Audio Layer 2 encoding library based on tooLAME
|
2018-01-16 14:57:07 +00:00
|
|
|
%description libs
|
2022-08-19 14:12:51 +00:00
|
|
|
TwoLAME is an optimized MPEG Audio Layer 2 (MP2) encoder. It should be able to
|
|
|
|
be used as a drop-in replacement for LAME (a MPEG Layer 3 encoder). The frontend
|
|
|
|
takes very similar command line options to LAME, and the backend library has a
|
|
|
|
very similar API to LAME.
|
2018-01-16 14:57:07 +00:00
|
|
|
|
|
|
|
This package contains the shared library.
|
|
|
|
|
|
|
|
%package devel
|
2022-08-19 14:12:51 +00:00
|
|
|
Summary: Development tools for TwoLAME applications
|
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
2018-01-16 14:57:07 +00:00
|
|
|
|
|
|
|
%description devel
|
2022-08-19 14:12:51 +00:00
|
|
|
This package contains the header files and documentation needed to develop
|
|
|
|
applications with TwoLAME.
|
2018-01-16 14:57:07 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%autosetup
|
|
|
|
|
|
|
|
%build
|
2022-08-19 14:12:51 +00:00
|
|
|
autoreconf -vif
|
2022-08-19 16:39:47 +00:00
|
|
|
%configure \
|
|
|
|
--disable-static \
|
|
|
|
--enable-sndfile
|
2018-01-16 14:57:07 +00:00
|
|
|
%make_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%make_install
|
|
|
|
rm %{buildroot}%{_libdir}/*.la
|
2022-08-19 14:12:51 +00:00
|
|
|
|
|
|
|
# Let RPM pick up the docs in the files section
|
2018-01-16 14:57:07 +00:00
|
|
|
rm -rf %{buildroot}%{_docdir}
|
|
|
|
|
2022-08-19 14:12:51 +00:00
|
|
|
%if 0%{?rhel} == 7
|
2018-02-05 12:29:21 +00:00
|
|
|
%ldconfig_scriptlets libs
|
2022-08-19 14:12:51 +00:00
|
|
|
%endif
|
2018-01-16 14:57:07 +00:00
|
|
|
|
|
|
|
%files
|
2022-08-19 16:39:47 +00:00
|
|
|
%doc AUTHORS ChangeLog NEWS README
|
2018-01-16 14:57:07 +00:00
|
|
|
%{_bindir}/%{name}
|
|
|
|
%{_mandir}/man1/%{name}.1*
|
|
|
|
|
|
|
|
%files libs
|
2022-08-19 16:39:47 +00:00
|
|
|
%license COPYING
|
2018-01-16 14:57:07 +00:00
|
|
|
%{_libdir}/lib%{name}.so.*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%doc doc/api.txt doc/html doc/psycho.txt doc/vbr.txt
|
|
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
|
|
%{_libdir}/lib%{name}.so
|
|
|
|
%{_includedir}/%{name}.h
|
|
|
|
|
|
|
|
%changelog
|
2024-10-29 16:17:22 +00:00
|
|
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 0.4.0-6
|
|
|
|
- Bump release for October 2024 mass rebuild:
|
|
|
|
Resolves: RHEL-64018
|
|
|
|
|
2024-06-24 16:27:36 +00:00
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 0.4.0-5
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
2024-01-27 06:52:07 +00:00
|
|
|
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2023-07-22 16:53:29 +00:00
|
|
|
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-01-21 05:34:41 +00:00
|
|
|
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-08-19 16:39:47 +00:00
|
|
|
* Fri Aug 19 2022 Simone Caronni <negativo17@gmail.com> - 0.4.0-1
|
|
|
|
- Update to 0.4.0.
|
|
|
|
|
2022-08-19 14:12:51 +00:00
|
|
|
* Fri Aug 19 2022 Simone Caronni <negativo17@gmail.com> - 0.3.13-21
|
|
|
|
- Clean up SPEC file.
|
|
|
|
- Trim changelog.
|
|
|
|
|
2022-07-23 11:10:30 +00:00
|
|
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.13-20
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-01-22 03:19:33 +00:00
|
|
|
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.13-19
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-07-23 19:50:32 +00:00
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.13-18
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-01-27 22:29:26 +00:00
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.13-17
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|