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
4b9cf2e0
Commit
4b9cf2e0
authored
Dec 18, 2018
by
Ed Reel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add libcdio package and dependencies
Add pre-built binaries
parent
c6312e66
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
69 additions
and
0 deletions
+69
-0
packages/libcddb.rb
packages/libcddb.rb
+31
-0
packages/libcdio.rb
packages/libcdio.rb
+38
-0
No files found.
packages/libcddb.rb
0 → 100644
View file @
4b9cf2e0
require
'package'
class
Libcddb
<
Package
description
'Libcddb is a C library to access data on a CDDB server (freedb.org).'
homepage
'http://libcddb.sourceforge.net/'
version
'1.3.2'
source_url
'https://prdownloads.sourceforge.net/project/libcddb/libcddb/1.3.2/libcddb-1.3.2.tar.bz2'
source_sha256
'35ce0ee1741ea38def304ddfe84a958901413aa829698357f0bee5bb8f0a223b'
binary_url
({
aarch64:
'https://dl.bintray.com/chromebrew/chromebrew/libcddb-1.3.2-chromeos-armv7l.tar.xz'
,
armv7l:
'https://dl.bintray.com/chromebrew/chromebrew/libcddb-1.3.2-chromeos-armv7l.tar.xz'
,
i686:
'https://dl.bintray.com/chromebrew/chromebrew/libcddb-1.3.2-chromeos-i686.tar.xz'
,
x86_64:
'https://dl.bintray.com/chromebrew/chromebrew/libcddb-1.3.2-chromeos-x86_64.tar.xz'
,
})
binary_sha256
({
aarch64:
'4f3c225000eeafdaa9129b944d4763c40f823eb195aeafc6996698f651db7d46'
,
armv7l:
'4f3c225000eeafdaa9129b944d4763c40f823eb195aeafc6996698f651db7d46'
,
i686:
'ba523bc37fbcd2278171754f58c042bc9b7d81438857b73803c44d34288a21d8'
,
x86_64:
'e98cba9508a10e2a7388e1aea34d49b1387bd029bc35c152abeafae4b54f65f6'
,
})
def
self
.
build
system
"./configure --prefix=
#{
CREW_PREFIX
}
--libdir=
#{
CREW_LIB_PREFIX
}
"
system
'make'
end
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
end
packages/libcdio.rb
0 → 100644
View file @
4b9cf2e0
require
'package'
class
Libcdio
<
Package
description
'The GNU Compact Disc Input and Control library (libcdio) contains a library for CD-ROM and CD image access.'
homepage
'http://www.gnu.org/software/libcdio/'
version
'2.0.0'
source_url
'https://ftp.gnu.org/gnu/libcdio/libcdio-2.0.0.tar.gz'
source_sha256
'1b481b5da009bea31db875805665974e2fc568e2b2afa516f4036733657cf958'
binary_url
({
aarch64:
'https://dl.bintray.com/chromebrew/chromebrew/libcdio-2.0.0-chromeos-armv7l.tar.xz'
,
armv7l:
'https://dl.bintray.com/chromebrew/chromebrew/libcdio-2.0.0-chromeos-armv7l.tar.xz'
,
i686:
'https://dl.bintray.com/chromebrew/chromebrew/libcdio-2.0.0-chromeos-i686.tar.xz'
,
x86_64:
'https://dl.bintray.com/chromebrew/chromebrew/libcdio-2.0.0-chromeos-x86_64.tar.xz'
,
})
binary_sha256
({
aarch64:
'96fe10d82e1165af8ddf59512c0f5e47adbebab38fcdb9741e687fc591075e98'
,
armv7l:
'96fe10d82e1165af8ddf59512c0f5e47adbebab38fcdb9741e687fc591075e98'
,
i686:
'0f4cd7753e6ba8c5304769fbebdd7c9603ed8841c1085e50d79f1ee9091f2857'
,
x86_64:
'b3e6ab517eaae30320ffbdc3f6874b250f59783dfb35708590e6fd22782e89ac'
,
})
depends_on
'libcddb'
def
self
.
build
system
'./configure'
,
"--prefix=
#{
CREW_PREFIX
}
"
,
"--libdir=
#{
CREW_LIB_PREFIX
}
"
,
'--without-cdda-player'
,
'--disable-maintainer-mode'
,
'--disable-static'
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