lame RPM is now created with gcc3 and full optimizations

This commit is contained in:
darkeye 2001-09-09 09:06:26 +00:00
parent 5c099e5c9f
commit b47dae73bd
1 changed files with 13 additions and 3 deletions

View File

@ -38,7 +38,7 @@
%define name lame %define name lame
%define ver 3.89 %define ver 3.89
%define quality beta %define quality beta
%define rel 1 %define rel 2
%define prefix /usr %define prefix /usr
@ -64,6 +64,7 @@ psycho acoustics, noise shaping and speed of MP3. Another goal of the LAME
project is to use these improvements for the basis of a patent free audio project is to use these improvements for the basis of a patent free audio
compression codec for the GNU project. compression codec for the GNU project.
This build is optimized for %{_target}.
# ============================================================ devel sub-package # ============================================================ devel sub-package
%package devel %package devel
@ -79,6 +80,7 @@ LAME project.
You will also need to install the main lame package in order to install You will also need to install the main lame package in order to install
these libraries. these libraries.
This build is optimized for %{_target}.
# =================================================================== prep stage # =================================================================== prep stage
%prep %prep
@ -87,8 +89,13 @@ these libraries.
# ================================================================== build stage # ================================================================== build stage
%build %build
export CC=kgcc export CC=gcc3
%configure export CFLAGS="-O9"
%configure --with-fileio=lame \
--without-vorbis \
--disable-gtktest \
--enable-nasm \
--enable-expopt=full
make make
@ -126,6 +133,9 @@ make clean
# =================================================================== change log # =================================================================== change log
# #
# $Log$ # $Log$
# Revision 1.2 2001/09/09 09:06:26 darkeye
# lame RPM is now created with gcc3 and full optimizations
#
# Revision 1.1 2001/09/02 12:46:05 darkeye # Revision 1.1 2001/09/02 12:46:05 darkeye
# added RPM package creation scripts # added RPM package creation scripts
# #