Test recipes added.

master
Luka Vandervelden 2019-07-20 15:00:11 +02:00
parent f921798fd9
commit 1045502d8a
1 changed files with 16 additions and 0 deletions

View File

@ -34,6 +34,22 @@ recipes << Recipe.new(context, "hello", "2.10").tap do |recipe|
#end
end
# Be careful with that one. Its not configured to use proper prefixes.
# (Not sure that it should though. Its gotta put things in /sbin anyway.)
recipes << Recipe.new(context, "sysvinit", "2.95").tap do |recipe|
recipe.sources << "https://git.savannah.nongnu.org/cgit/sysvinit.git/snapshot/sysvinit-#{recipe.version}.tar.gz"
recipe.url = "https://savannah.nongnu.org/projects/sysvinit"
recipe.description = "System V-like init system."
recipe.instructions.install << "cd sysvinit-#{recipe.version} && make ROOT='#{recipe.fake_root_directory}' install"
end
recipes << Recipe.new(context, "musl", "1.1.23").tap do |recipe|
recipe.sources << "https://www.musl-libc.org/releases/musl-#{recipe.version}.tar.gz"
recipe.url = "https://www.musl-libc.org/"
recipe.description = "The musl c library (libc) implementation."
end
if ARGV.size == 0 || ARGV[0]? == "-h"
pp recipes.map &.name
exit 0