1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
"name": "MariadbAT101",
"description": "Drop-in replacement for MySQL",
"url": "https://downloads.mariadb.org/f/mariadb-10.1.38/source/mariadb-10.1.38.tar.gz",
"mirror": null,
"homepage": "https://mariadb.org/",
"depends": [
{
"depend": "cmake",
"build-depend": true
},
{
"depend": "openssl",
"build-depend": false
}
],
"resource": [],
"conflicts": [],
"patches": [],
"install": [
"(var/\"mysql\").mkpath",
"unless File.exist? \"#{var}/mysql/mysql/user.frm\"",
"ENV[\"TMPDIR\"] = nil",
"system \"#{bin}/mysql_install_db\", \"--verbose\", \"--user=#{ENV[\"USER\"]}\",",
"\"--basedir=#{prefix}\", \"--datadir=#{var}/mysql\", \"--tmpdir=/tmp\""
],
"version": "10.1.38",
"file": "mariadb@10.1.rb"
}
|