package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
1.0 KiB

6 years ago
package("sqlite3")
set_homepage("https://sqlite.org/")
set_description("The most used database engine in the world")
set_urls("https://sqlite.org/2018/sqlite-autoconf-$(version)000.tar.gz",
{version = function (version) return version:gsub("%.", "") end})
6 years ago
add_versions("3.24.0", "d9d14e88c6fb6d68de9ca0d1f9797477d82fc3aed613558f87ffbdbbc5ceb74a")
add_versions("3.23.0", "b7711a1800a071674c2bf76898ae8584fc6c9643cfe933cfc1bc54361e3a6e49")
on_install("windows", function (package)
6 years ago
os.vrun("nmake DEBUG=%s -f Makefile.msc DYNAMIC_SHELL=1 PLATFORM=%s", package:debug() and "1" or "0", package:arch())
6 years ago
os.cp("*.h", package:installdir("include"))
os.cp("sqlite3.lib", package:installdir("lib"))
os.cp("sqlite3.pdb", package:installdir("lib"))
os.cp("sqlite3.dll", package:installdir("lib"))
end)
on_install("macosx", "linux", function (package)
6 years ago
import("package.tools.autoconf").install(package, {package:debug() and "--enable-debug" or ""})
6 years ago
end)