Initial PKGBUILD

This commit is contained in:
SelfRef 2023-12-17 21:45:26 +01:00
commit 8701980cc0
3 changed files with 34 additions and 0 deletions

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = mrpack-install-bin
pkgdesc = Modrinth Modpack server deployment
pkgver = 0.16.9
pkgrel = 1
url = https://github.com/nothub/mrpack-install
arch = x86_64
license = MIT
provides = mrpack-install
conflicts = mrpack-install
source = mrpack-install::https://github.com/nothub/mrpack-install/releases/download/v0.16.9/mrpack-install-linux
md5sums = aedb13fab309ce0d425331585cfe9fca
pkgname = mrpack-install-bin

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
*
!PKGBUILD
!.*

18
PKGBUILD Normal file
View file

@ -0,0 +1,18 @@
# Maintainer: SelfRef <arch@selfref.dev>
_basename=mrpack-install
pkgname="${_basename}-bin"
pkgver=0.16.9
pkgrel=1
pkgdesc="Modrinth Modpack server deployment"
arch=('x86_64')
url="https://github.com/nothub/mrpack-install"
license=('MIT')
provides=('mrpack-install')
conflicts=('mrpack-install')
source=("${_basename}"::"https://github.com/nothub/mrpack-install/releases/download/v${pkgver}/mrpack-install-linux")
md5sums=('aedb13fab309ce0d425331585cfe9fca')
package() {
install -Dm755 -t "${pkgdir}/usr/bin" "${srcdir}/mrpack-install"
}