123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- Summary: LAME Ain't an MP3 Encoder... but it's the best.
- Name: lame
- Version: 3.99.5
- Release: 1%{?_dist_release}
- License: GPLv2+
- Group: Applications/Multimedia
- URL: http://lame.sourceforge.net/
- #Source: http://prdownloads.sourceforge.net/lame/lame-%{version}.tar.gz
- Source: http://prdownloads.sourceforge.net/lame/lame-%{version}.tar.gz
- Patch1: %{name}-noexecstack.patch
- Patch10: lame-3.99-libs-termcap.patch
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- %{?enable_brhist:BuildRequires: ncurses-devel}
- BuildRequires: gtk+-devel
- BuildRequires: nasm
- %{?enable_brhist:Requires: ncurses}
- Requires(post): ldconfig
- Requires(postun): ldconfig
- %description
- LAME is an educational tool to be used for learning about MP3 encoding.
- The goal of the LAME project is to use the open source model to improve
- the psycho acoustics, noise shaping and speed of MP3.
- %package mp3x
- Summary: GTK frame analyzer for lame
- Group: Applications/Multimedia
- Requires: %{name} = %{version}-%{release}
- Requires: gtk+
- %description mp3x
- LAME is an educational tool to be used for learning about MP3 encoding.
- The goal of the LAME project is to use the open source model to improve
- the psycho acoustics, noise shaping and speed of MP3.
- This package contains the GTK frame analyzer.
- %package devel
- Summary: Shared and static libraries for LAME.
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- %description devel
- LAME is an educational tool to be used for learning about MP3 encoding.
- The goal of the LAME project is to use the open source model to improve
- the psycho acoustics, noise shaping and speed of MP3.
- This package contains the libraries and includes files needed to develop
- applications with lame.
- %prep
- %setup -q
- %patch1 -p1 -b .noexec
- %patch10 -p1 -b .termcap
- %build
- %__sed -i -e 's/^\(\s*hardcode_libdir_flag_spec\s*=\).*/\1/' configure
- %ifarch %{ix86} x86_64
- export CFLAGS="$RPM_OPT_FLAGS -ffast-math"
- %endif
- %configure \
- --disable-dependency-tracking \
- --disable-static \
- %ifarch %{ix86} x86_64
- --enable-nasm \
- %else
- --disable-nasm \
- %endif
- --enable-decoder \
- --without-vorbis \
- --enable-mp3x \
- --enable-mp3rtp \
- --enable-decode-layer1 \
- %{?enable_brhist:--enable-brhist}%{!?enable_brhist:--disable-brhist} \
- --disable-debug \
- ;
- %__make %{?_smp_mflags}
- %check
- %__make test
- %install
- %__rm -rf %{buildroot}
- %makeinstall
- %__rm -rf installed-docs
- %__mv -f %{buildroot}%{_datadir}/doc/%{name} installed-docs
- # some apps still expect to find <lame.h>
- %__ln_s -f lame/lame.h %{buildroot}%{_includedir}/lame.h
- # remove unpackaged files
- %__rm -f $RPM_BUILD_ROOT%{_libdir}/*.{la,a}
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %clean
- %__rm -rf %{buildroot}
- %files
- %defattr (-,root,root)
- %doc COPYING ChangeLog LICENSE README TODO USAGE
- %doc installed-docs/*
- %{_bindir}/lame
- %{_bindir}/mp3rtp
- %{_libdir}/lib*.so.*
- %{_mandir}/man1/lame.1*
- %files mp3x
- %defattr (-,root,root)
- %{_bindir}/mp3x
- %files devel
- %defattr (-,root,root)
- %doc API HACKING STYLEGUIDE
- %{_libdir}/lib*.so
- %{_includedir}/lame
- %{_includedir}/lame.h
- %changelog
- * Sat May 26 2012 Munehiro Yamamoto <munepi@vinelinux.org> 3.99.5
- - new upstream release
- * Wed Oct 19 2011 Munehiro Yamamoto <munepi@vinelinux.org> 3.99-1
- - new upstream release
- - applied lame-3.99-libs-termcap.patch
- * Sun Sep 11 2011 Munehiro Yamamoto <munepi@vinelinux.org> 3.98.4-2
- - change release to sync with self-build-lame
- * Sat Mar 27 2010 Munehiro Yamamoto <munepi@vinelinux.org> 3.98.4-1
- - new upstream release
- * Sat Mar 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 3.98.3-1
- - new upstream release
- * Sat Sep 26 2009 Munehiro Yamamoto <munepi@vinelinux.org> 3.98.2-2
- - change release to sync with self-build-lame
- * Sat Sep 26 2009 Munehiro Yamamoto <munepi@vinelinux.org> 3.98.2-1
- - new upstream release
- - applied some patches from RPM Fusion development
- - added in %%configure:
- --enable-decode-layer1
- --disable-dependency-tracking
- --disable-static
- * Fri Jun 05 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 3.97-5
- - change release to sync with self-build-lame
- * Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 3.97-4
- - change release to sync with self-build-lame
- * Sun Nov 02 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 3.97-3
- - spec in utf8
- - remove *.la
- * Wed May 07 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.97-2
- - change %%{__make} option to -j1 <BTS:VineLinux:611>
- * Sat May 03 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.97-1
- - apply new versioning policy
- * Sun Nov 12 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.97-0vl3
- - fix typo
- * Sun Nov 12 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.97-0vl2
- - link libmp3lame with libm (patch1)
- * Sat Nov 11 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.97-0vl1
- - initial build
|