diff options
author | Dominik Opyd | 2022-07-25 19:57:58 +0200 |
---|---|---|
committer | Dominik Opyd | 2022-07-25 19:57:58 +0200 |
commit | dc2ec2d91c2dbfccb1d0328404746fa56a5d2567 (patch) | |
tree | d239254f4de5063a739c8ded5f49a5c2dd4fb0e3 | |
download | aur-aoa.tar.gz |
release: aoa 3.6.10
-rw-r--r-- | .SRCINFO | 20 | ||||
-rw-r--r-- | PKGBUILD | 28 |
2 files changed, 48 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..87ff11949cbe --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,20 @@ +pkgbase = aoa + pkgdesc = Advent of Ascension is a massive adventure and exploration mod designed with the purpose of fleshing out every area of the game as much as possible. + pkgver = 3.6.10 + pkgrel = 1 + url = https://www.curseforge.com/minecraft/mc-mods/advent-of-ascension-nevermine + arch = any + groups = forge-mods + groups = minecraft-mods + license = other + depends = geckolib>=3.1.8 + depends = forge-hooks>=1.0.0 + depends = forge-server>=41.0.98 + provides = aoa=3.6.10 + noextract = AoA3--1.19-.jar + source = https://github.com/Tslat/Advent-Of-Ascension/blob/1.19/LICENSE.md + source = https://mediafiles.forgecdn.net/files/3894/434/AoA3-1.19-3.6.10.jar + sha256sums = 6300552af54c44b4079ac6dc19ad1eee402429994b9d2026441d14e0a5a073e5 + sha256sums = 3599809d71a4ad144fca2dce6f523ae1bbd8fd908505379f49c3ffd83df08a6a + +pkgname = aoa diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..f4cded51c7e3 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Dominik Opyd <d.opyd@oad.earth> + +pkgname=aoa +pkgver=3.6.10 +minver=1.19 +pkgrel=1 +pkgdesc="Advent of Ascension is a massive adventure and exploration mod designed with the purpose of fleshing out every area of the game as much as possible." +arch=('any') +url='https://www.curseforge.com/minecraft/mc-mods/advent-of-ascension-nevermine' +source=(https://github.com/Tslat/Advent-Of-Ascension/blob/$minver/LICENSE.md + https://mediafiles.forgecdn.net/files/3894/434/AoA3-1.19-3.6.10.jar) +license=('other') +depends=("geckolib>=3.1.8" + "forge-hooks>=1.0.0" + "forge-server>=41.0.98") +provides=(aoa=$pkgver) +noextract=(AoA3--$minver-$pkver.jar) +sha256sums=('6300552af54c44b4079ac6dc19ad1eee402429994b9d2026441d14e0a5a073e5' + '3599809d71a4ad144fca2dce6f523ae1bbd8fd908505379f49c3ffd83df08a6a') +groups=(forge-mods minecraft-mods) + +package() { + local srvpath=/srv/forge + + install -Dm 2755 $srcdir/AoA3-1.19-3.6.10.jar $pkgdir$srvpath/mods/$pkgname.jar + + install -Dm 644 $srcdir/LICENSE.md ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE +} |