From 5182e42f815facf74a963ae96e42a72854c517c2 Mon Sep 17 00:00:00 2001 From: refrigerador67 <96502023+refrigerador67@users.noreply.github.com> Date: Tue, 14 Jan 2025 03:21:48 +0000 Subject: [PATCH] Added PKGBUILD --- PKGBUILD | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 PKGBUILD diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..400877b --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,76 @@ +pkgname=picodulce +pkgver=0.11.7 +pkgrel=1 +pkgdesc="Launcher for Minecraft based on the picomc library" +arch=('x86_64') +OPTIONS=(!strip !docs libtool emptydirs) +url="https://github.com/nixietab/picodulce" +license=('MIT') # Replace with your project's license +depends=('python' 'python-virtualenv' 'xdg-utils') +makedepends=('git') +source=("git+https://github.com/nixietab/picodulce.git") +sha256sums=('SKIP') + +package() { + cd "$srcdir/$pkgname" + + # Create a directory for the application in the user's home directory + install -dm755 "$pkgdir/usr/share/$pkgname" + + # Copy all project files to the created directory + cp -r . "$pkgdir/usr/share/$pkgname" + + # Create a virtual environment + python -m venv "$pkgdir/usr/share/$pkgname/venv" + + # Activate the virtual environment and install dependencies + source "$pkgdir/usr/share/$pkgname/venv/bin/activate" + pip install -r requirements.txt + + # Create a run.sh script + install -Dm755 /dev/stdin "$pkgdir/usr/share/$pkgname/run.sh" <