From 489f64dbcadf07bcc45589c70b5110202f271c7e Mon Sep 17 00:00:00 2001 From: NullBite Date: Sat, 17 Jun 2023 20:07:06 -0400 Subject: [PATCH] Remove package-installer-bootstrap.sh This was just a wrapper for packwiz-installer-bootstrap.jar, which is unlikely to be called on its own and just clutters $PATH --- .SRCINFO | 4 +--- PKGBUILD | 10 +++------- packwiz-installer-bootstrap.sh | 2 -- 3 files changed, 4 insertions(+), 12 deletions(-) delete mode 100755 packwiz-installer-bootstrap.sh diff --git a/.SRCINFO b/.SRCINFO index 9b22b69..153e815 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = packwiz-installer pkgdesc = An installer for packwiz modpacks. pkgver = 0.5.10 - pkgrel = 3 + pkgrel = 4 url = https://github.com/packwiz/packwiz-installer arch = any license = MIT @@ -11,10 +11,8 @@ pkgbase = packwiz-installer source = packwiz-installer::git+https://github.com/packwiz/packwiz-installer.git#tag=7b6daaf7e552f44888d68dcd8235822dd1c2956e source = packwiz-installer-bootstrap::git+https://github.com/packwiz/packwiz-installer-bootstrap.git#tag=fc4cd603d04d08c09fcd83cadb9ceedf776831e7 source = packwiz-installer.sh - source = packwiz-installer-bootstrap.sh sha256sums = SKIP sha256sums = SKIP sha256sums = 924aff17bf4ad5fd745c5378d39ec883f685a9b0f4f754828cd99bc83c71df6d - sha256sums = 783990641e80a1b6603264d420ccf0ab6ad5a5c519e05a27162472c1746630cd pkgname = packwiz-installer diff --git a/PKGBUILD b/PKGBUILD index fc9ce5b..f3295fa 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: NullBite pkgname=packwiz-installer pkgver=0.5.10 -pkgrel=3 +pkgrel=4 pkgdesc="An installer for packwiz modpacks." arch=("any") url="https://github.com/packwiz/packwiz-installer" @@ -13,12 +13,10 @@ _tag=7b6daaf7e552f44888d68dcd8235822dd1c2956e # git rev-parse v${pkgver} _tag_bootstrap=fc4cd603d04d08c09fcd83cadb9ceedf776831e7 source=("$pkgname::git+https://github.com/packwiz/$pkgname.git#tag=$_tag" "$pkgname-bootstrap::git+https://github.com/packwiz/$pkgname-bootstrap.git#tag=$_tag_bootstrap" -"packwiz-installer.sh" -"packwiz-installer-bootstrap.sh") +"packwiz-installer.sh") sha256sums=('SKIP' 'SKIP' - '924aff17bf4ad5fd745c5378d39ec883f685a9b0f4f754828cd99bc83c71df6d' - '783990641e80a1b6603264d420ccf0ab6ad5a5c519e05a27162472c1746630cd') + '924aff17bf4ad5fd745c5378d39ec883f685a9b0f4f754828cd99bc83c71df6d') pkgver() { cd ${pkgname} @@ -58,6 +56,4 @@ package() { cd "$srcdir" install -Dm755 packwiz-installer.sh "${pkgdir}/usr/bin/packwiz-installer" - install -Dm755 packwiz-installer-bootstrap.sh \ - "${pkgdir}/usr/bin/packwiz-installer-bootstrap" } diff --git a/packwiz-installer-bootstrap.sh b/packwiz-installer-bootstrap.sh deleted file mode 100755 index b90d1ea..0000000 --- a/packwiz-installer-bootstrap.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -java -jar /usr/share/java/packwiz/packwiz-installer-bootstrap.jar "$@"