Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
chromebrew
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
chromebrew
Commits
ccc3ec18
Commit
ccc3ec18
authored
Aug 24, 2017
by
lyxell
Committed by
GitHub
Aug 24, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1107 from jam7/update/libmp3lame
Change libmp3lame to make it work on i686.
parents
861853da
de27d119
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
packages/libmp3lame.rb
packages/libmp3lame.rb
+10
-2
No files found.
packages/libmp3lame.rb
View file @
ccc3ec18
...
...
@@ -3,12 +3,20 @@ require 'package'
class
Libmp3lame
<
Package
description
'LAME is a high quality MPEG Audio Layer III (MP3) encoder licensed under the LGPL.'
homepage
'http://lame.sourceforge.net/'
version
'3.99.5'
version
'3.99.5
-1
'
source_url
'https://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz'
source_sha256
'24346b4158e4af3bd9f2e194bb23eb473c75fb7377011523353196b19b9a23ff'
def
self
.
build
system
"./configure"
case
ARCH
when
'i686'
# gcc-4.x for i686 has problem, so forcing to use -msse here.
# see https://mail-index.netbsd.org/pkgsrc-users/2015/04/18/msg021393.html
# and https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56145 for details.
system
'CFLAGS="-O3 -fomit-frame-pointer -ffast-math -maccumulate-outgoing-args -msse" ./configure'
else
system
"./configure"
end
system
"make"
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment