Commit 04f6d902 authored by Damian Montero's avatar Damian Montero

Sqlite to version 3.10

parent 93f442b5
require 'package' # include package class file require 'package' # include package class file
class Sqlite < Package # name the package and make it a Package class instance class Sqlite < Package # name the package and make it a Package class instance
version '3.8.5' # software version version '3.10' # software version
source_url 'https://www.sqlite.org/2014/sqlite-autoconf-3080500.tar.gz' # software source tarball url source_url 'http://www.sqlite.org/2016/sqlite-autoconf-3100000.tar.gz' # software source tarball url
source_sha1 '7f667e10ccebc26ab2086b8a30cb0a600ca0acae' # source tarball sha1 sum source_sha1 '7be6e6869d0d2d9fe3df71b5c65f065dd2325f58' # source tarball sha1 sum
def self.build # self.build contains commands needed to build the software from source def self.build # self.build contains commands needed to build the software from source
system "./configure" system "./configure"
system "make" # ordered chronologically system "make" # ordered chronologically
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment