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