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
2a8e9c96
Commit
2a8e9c96
authored
Jun 04, 2017
by
Ed Reel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove libvpx configure option
- Remove libvpx package
parent
ef25024d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
25 deletions
+2
-25
packages/ffmpeg.rb
packages/ffmpeg.rb
+2
-3
packages/libvpx.rb
packages/libvpx.rb
+0
-22
No files found.
packages/ffmpeg.rb
View file @
2a8e9c96
...
...
@@ -16,7 +16,6 @@ class Ffmpeg < Package
depends_on
'libtheora'
depends_on
'libvoamrwbenc'
depends_on
'libvorbis'
depends_on
'libvpx'
depends_on
'libwebp'
depends_on
'libx264'
depends_on
'libx265'
...
...
@@ -58,10 +57,10 @@ class Ffmpeg < Package
--enable-libvidstab \
--enable-libvo-amrwbenc \
--enable-libvorbis \
--enable-libvpx \
--enable-libwebp \
--enable-libx264 \
--enable-libx265"
--enable-libx265 \
--enable-libxvid"
end
def
self
.
install
...
...
packages/libvpx.rb
deleted
100644 → 0
View file @
ef25024d
require
'package'
class
Libvpx
<
Package
version
'1.6.1'
source_url
'https://github.com/webmproject/libvpx/archive/v1.6.1.tar.gz'
source_sha1
'9e41a6bb2b991f5542c264676ac452114cda9c7c'
def
self
.
build
system
"./configure --prefix=/usr/local \
--enable-shared \
--enable-vp8 \
--enable-vp9 \
--enable-postproc \
--enable-vp9-postproc \
--enable-webm-io"
system
"make"
end
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
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