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
90cfc137
Commit
90cfc137
authored
Apr 26, 2017
by
lyxell
Committed by
GitHub
Apr 26, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #610 from jam7/update/sqlite
Update sqlite to 3.18.0
parents
2711d5f8
d36103d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
packages/sqlite.rb
packages/sqlite.rb
+11
-11
No files found.
packages/sqlite.rb
View file @
90cfc137
require
'package'
# include package class file
require
'package'
class
Sqlite
<
Package
# name the package and make it a Package class instance
version
'3.1
0'
# software version
source_url
'http
://www.sqlite.org/2016/sqlite-autoconf-3100000.tar.gz'
# software source tarball url
source_sha1
'7
be6e6869d0d2d9fe3df71b5c65f065dd2325f58'
# source tarball sha1 sum
class
Sqlite
<
Package
version
'3.1
8.0'
source_url
'http
s://www.sqlite.org/2017/sqlite-autoconf-3180000.tar.gz'
source_sha1
'7
4559194e1dd9b9d577cac001c0e9d370856671b'
def
self
.
build
# self.build contains commands needed to build the software from source
system
"./configure"
system
"make"
# ordered chronologically
def
self
.
build
system
"./configure"
,
"--disable-static"
,
"--enable-shared"
,
"--with-pic"
system
"make"
end
def
self
.
install
# self.install contains commands needed to install the software on the target system
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
# remember to include DESTDIR set to CREW_DEST_DIR - needed to keep track of changes made to system
end
# during installation
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