Commit dc95d1c2 authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #786 from uberhacker/add-libsqlite3-package

Add libsqlite3 package
parents 89b8321e 434f9dc4
require 'package'
class Libsqlite3 < Package
description 'SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.'
homepage 'https://github.com/LuaDist/libsqlite3'
version '3.7.7.1'
source_url 'https://github.com/LuaDist/libsqlite3/archive/3.7.7.1.tar.gz'
source_sha1 '43a8eaad04a2220e9ede5764da8edba4003ad33a'
def self.build
system "./configure"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
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