Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
nexedi
chromebrew
Commits
fe7c9810
Commit
fe7c9810
authored
10 years ago
by
Andreas Gerlach
Browse files
Options
Download
Email Patches
Plain Diff
re-add sqlite
parent
61847ebc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
packages/sqlite.rb
packages/sqlite.rb
+16
-0
No files found.
packages/sqlite.rb
0 → 100644
View file @
fe7c9810
require
'package'
# include package class file
class
Sqlite
<
Package
# name the package and make it a Package class instance
version
'3.8.5'
# software version
source_url
'https://www.sqlite.org/2014/sqlite-autoconf-3080500.tar.gz'
# software source tarball url
source_sha1
'7f667e10ccebc26ab2086b8a30cb0a600ca0acae'
# source tarball sha1 sum
def
self
.
build
# self.build contains commands needed to build the software from source
system
"./configure"
system
"make"
# ordered chronologically
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
end
This diff is collapsed.
Click to expand it.
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