From f0c677ef5288a1ebc66f768dedbeea177a5d0a30 Mon Sep 17 00:00:00 2001 From: nix Date: Tue, 21 Jan 2025 17:55:45 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20picodulce.rb?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- picodulce.rb | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 picodulce.rb diff --git a/picodulce.rb b/picodulce.rb new file mode 100644 index 0000000..130636a --- /dev/null +++ b/picodulce.rb @@ -0,0 +1,82 @@ +class Picodulce < Formula + desc "Launcher for Minecraft based on the picomc library" + homepage "https://github.com/nixietab/picodulce" + url "https://github.com/nixietab/picodulce.git", :using => :git, :tag => "v0.11.7" + version "0.11.7" + license "MIT" + + depends_on "python@3.9" + + def install + # Create a directory for the application in the Homebrew prefix + (prefix/"share/picodulce").mkpath + + # Copy all project files to the created directory + cp_r ".", prefix/"share/picodulce" + + # Create a virtual environment + system "python3", "-m", "venv", prefix/"share/picodulce/venv" + + # Activate the virtual environment and install dependencies + system "#{prefix}/share/picodulce/venv/bin/pip", "install", "-r", "#{prefix}/share/picodulce/requirements.txt" + + # Create a run.sh script + (prefix/"share/picodulce/run.sh").write <<~EOS + #!/bin/bash + if [ ! -d "venv" ]; then + echo "venv folder does not exist. Creating virtual environment..." + python3 -m venv venv + source venv/bin/activate + echo "Installing required packages..." + pip install -r requirements.txt + else + source venv/bin/activate + fi + python picodulce.py + EOS + chmod 0755, prefix/"share/picodulce/run.sh" + + # Create a macOS application bundle + app_path = prefix/"Picodulce.app" + (app_path/"Contents/MacOS").mkpath + (app_path/"Contents/Resources").mkpath + + # Write the Info.plist file + (app_path/"Contents/Info.plist").write <<~EOS + + + + + CFBundleName + Picodulce + CFBundleDisplayName + Picodulce + CFBundleIdentifier + com.nixietab.picodulce + CFBundleVersion + 0.11.7 + CFBundleExecutable + run.sh + CFBundleIconFile + launcher_icon.ico + LSApplicationCategoryType + public.app-category.games + + + EOS + + # Copy the executable script and resources into the application bundle + cp prefix/"share/picodulce/run.sh", app_path/"Contents/MacOS/run.sh" + cp prefix/"share/picodulce/launcher_icon.ico", app_path/"Contents/Resources/launcher_icon.ico" + + # Make the run.sh script executable + chmod 0755, app_path/"Contents/MacOS/run.sh" + + # Install the application bundle + prefix.install app_path + end + + test do + system "false" + end +end \ No newline at end of file