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
This commit is contained in:
NullBite 2023-06-17 20:07:06 -04:00
parent d26640dc8e
commit 489f64dbca
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A
3 changed files with 4 additions and 12 deletions

View File

@ -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

View File

@ -1,7 +1,7 @@
# Maintainer: NullBite <aur.archlinux@nullbite.com>
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"
}

View File

@ -1,2 +0,0 @@
#!/bin/bash
java -jar /usr/share/java/packwiz/packwiz-installer-bootstrap.jar "$@"