mirror of
https://github.com/archlinux/aur.git
synced 2026-02-17 09:43:48 +01:00
Initial PKGBUILD
This commit is contained in:
commit
8701980cc0
3 changed files with 34 additions and 0 deletions
13
.SRCINFO
Normal file
13
.SRCINFO
Normal 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
3
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
*
|
||||
!PKGBUILD
|
||||
!.*
|
||||
18
PKGBUILD
Normal file
18
PKGBUILD
Normal 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"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue