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
af0f07d0
Commit
af0f07d0
authored
Mar 10, 2020
by
Ed Reel
Committed by
GitHub
Mar 10, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add jack package (#3877)
Add pre-built binaries
parent
5de0b194
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
0 deletions
+50
-0
packages/jack.rb
packages/jack.rb
+50
-0
No files found.
packages/jack.rb
0 → 100644
View file @
af0f07d0
require
'package'
class
Jack
<
Package
description
'JACK (JACK Audio Connection Kit) refers to an API that provides a basic infrastructure for audio applications to communicate with each other and with audio hardware.'
homepage
'https://jackaudio.org/'
version
'1.9.14'
source_url
'https://github.com/jackaudio/jack2/releases/download/v1.9.14/v1.9.14.tar.gz'
source_sha256
'a20a32366780c0061fd58fbb5f09e514ea9b7ce6e53b080a44b11a558a83217c'
binary_url
({
aarch64:
'https://dl.bintray.com/chromebrew/chromebrew/jack-1.9.14-chromeos-armv7l.tar.xz'
,
armv7l:
'https://dl.bintray.com/chromebrew/chromebrew/jack-1.9.14-chromeos-armv7l.tar.xz'
,
i686:
'https://dl.bintray.com/chromebrew/chromebrew/jack-1.9.14-chromeos-i686.tar.xz'
,
x86_64:
'https://dl.bintray.com/chromebrew/chromebrew/jack-1.9.14-chromeos-x86_64.tar.xz'
,
})
binary_sha256
({
aarch64:
'347c09ba7eb56e45ab222de5aebbc75ea6c9bbf85c59bf1da3cb33a87762a0c7'
,
armv7l:
'347c09ba7eb56e45ab222de5aebbc75ea6c9bbf85c59bf1da3cb33a87762a0c7'
,
i686:
'8b855311f24cb179be23371066b8f8917589af2ac364ce8a70af145f5e8b86a1'
,
x86_64:
'85bb228bd5f60b72b377ca99bd22464292d3cf05f7e5e92d433482117abdeafd'
,
})
depends_on
'dbus'
depends_on
'alsa_lib'
depends_on
'libdb'
depends_on
'libsndfile'
def
self
.
patch
# Set the correct python executable path.
system
"sed -i 's,/usr/bin,
#{
CREW_PREFIX
}
/bin,' waf"
end
def
self
.
build
system
'./waf'
,
'configure'
,
'--dbus'
,
'--classic'
,
'--db=yes'
,
'--alsa=yes'
,
'--sndfile=yes'
,
'--autostart=none'
,
"--prefix=
#{
CREW_PREFIX
}
"
,
"--libdir=
#{
CREW_LIB_PREFIX
}
"
system
'./waf build'
end
def
self
.
install
system
"./waf install --destdir=
#{
CREW_DEST_DIR
}
"
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