add possibility to create package

This commit is contained in:
Artur Gurgul1 2025-08-07 13:02:01 +02:00
parent a7807f089c
commit ed7fc9aa7f
6 changed files with 104 additions and 10 deletions

View file

@ -56,6 +56,14 @@ when :make
puts "making..."
require 'make'
Make.command(options)
when :pkgmake
puts "Making package #{options.name}"
require 'make'
Make.create_package(options)
when :pkginstall
require 'make'
# TODO: wrong naming it is not name, but path
Make.install_package(options.name)
when :execute
puts "Ececuting: #{options.name}"
require 'execute'