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
Guillaume Hervier
chromebrew
Commits
657a167b
Commit
657a167b
authored
Mar 22, 2018
by
lovedheart
Committed by
Ed Reel
Mar 22, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[xkbcomp] Add pre-built binary, minor fix (#2140)
Add pre-built binary
parent
b8b8e8d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
5 deletions
+14
-5
packages/xkbcomp.rb
packages/xkbcomp.rb
+14
-5
No files found.
packages/xkbcomp.rb
View file @
657a167b
...
...
@@ -7,25 +7,34 @@ class Xkbcomp < Package
source_url
'https://www.x.org/archive//individual/app/xkbcomp-1.4.1.tar.gz'
source_sha256
'9cdae907b6e34f1f325f6311020126157037925877f323a880e0c9ecab9628f6'
binary_url
({
aarch64:
'https://dl.bintray.com/chromebrew/chromebrew/xkbcomp-1.4.1-chromeos-armv7l.tar.xz'
,
armv7l:
'https://dl.bintray.com/chromebrew/chromebrew/xkbcomp-1.4.1-chromeos-armv7l.tar.xz'
,
i686:
'https://dl.bintray.com/chromebrew/chromebrew/xkbcomp-1.4.1-chromeos-i686.tar.xz'
,
x86_64:
'https://dl.bintray.com/chromebrew/chromebrew/xkbcomp-1.4.1-chromeos-x86_64.tar.xz'
,
})
binary_sha256
({
aarch64:
'7ed85e49b397d30d573fe2f257e4b0ce15a2a9251b5ee5b71fb8e2f6ae67d7b4'
,
armv7l:
'7ed85e49b397d30d573fe2f257e4b0ce15a2a9251b5ee5b71fb8e2f6ae67d7b4'
,
i686:
'da328a3d2e94c439548b87d9a052dee48a8c8fd76b1ceb07935dd7c285fb8afa'
,
x86_64:
'ef2d4699d40b67b73d44691ebc83f722a70374ec5849e11e56525606ddf04e83'
,
})
depends_on
'mesa'
depends_on
'xcb_util'
def
self
.
build
system
"./configure \
--prefix=
#{
CREW_PREFIX
}
\
--libdir=
#{
CREW_LIB_PREFIX
}
\
--with-xkb-config-root=
#{
CREW_LIB_PREFIX
}
/X11/xkb "
--libdir=
#{
CREW_LIB_PREFIX
}
"
system
"make"
end
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
system
"mkdir -p
#{
CREW_DEST_LIB_PREFIX
}
/X11/xkb"
end
def
self
.
postinstall
puts
"xkb configuration files are located in
#{
CREW_
LIB_PREFIX
}
/X11/xkb"
.
lightblue
puts
"xkb configuration files are located in
#{
CREW_
PREFIX
}
/share
/X11/xkb"
.
lightblue
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