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
15a5fd45
Commit
15a5fd45
authored
Feb 06, 2017
by
Kazushi (Jam) Marukawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update libxml2 to 2.9.4
add check methods
parent
d2661c66
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
packages/libxml2.rb
packages/libxml2.rb
+12
-4
No files found.
packages/libxml2.rb
View file @
15a5fd45
require
'package'
class
Libxml2
<
Package
version
'2.9.
2-1
'
source_url
'
http://xmlsoft.org/sources/libxml2-2.9.2
.tar.gz'
source_sha1
'
f46a37ea6d869f702e03f393c376760f3cbee673
'
version
'2.9.
4
'
source_url
'
ftp://xmlsoft.org/libxml2/libxml2-2.9.4
.tar.gz'
source_sha1
'
958ae70baf186263a4bd801a81dd5d682aedd1db
'
def
self
.
build
system
"./configure
CFLAGS=
\"
-fPIC
\"
--without-python"
system
"./configure
"
,
"--enable-shared"
,
"--disable-static"
,
"--with-pic"
,
"
--without-python"
system
"make"
end
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
def
self
.
check
# Remove EBCDIC test since it fails.
# Check https://mail.gnome.org/archives/xml/2010-April/msg00010.html for details.
system
"rm"
,
"test/ebcdic_566012.xml"
system
"make"
,
"check"
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