Initial Commit

This commit is contained in:
Relish0171 2025-05-03 23:32:56 +02:00
commit 4ce834cc7f
3 changed files with 56 additions and 0 deletions

11
.SRCINFO Normal file
View file

@ -0,0 +1,11 @@
pkgbase = vic3-tiger-bin
pkgdesc = Checks game mod files for common mistakes and warns about them.
pkgver = 1.7.0
pkgrel = 1
url = https://github.com/amtep/ck3-tiger
arch = x86_64
license = GPL3
source = https://github.com/amtep/ck3-tiger/releases/download/v1.7.0/vic3-tiger-linux-v1.7.0.tar.gz
sha256sums = 78365e3f1cb883aecf2520570b1b1355427bbced86dc075300855c8db47729d3
pkgname = vic3-tiger-bin

18
LICENSE Normal file
View file

@ -0,0 +1,18 @@
Binary files, as well as any files describing changes ("patches") to the software that is being built are excluded from this license.
They are provided under the license terms of the software they describe
changes for.
Any files containing a license notice are excluded from this license. They are provided under the license terms defined in their respective notices.
Copyright 2024 Arch Linux Contributors
Permission to use, copy, modify, and/or distribute this software for
any purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE
FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

27
PKGBUILD Normal file
View file

@ -0,0 +1,27 @@
# Maintainer: Relish0171 <aur.such581@aleeas.com>
_basename=vic3-tiger
pkgname=${_basename}-bin
pkgver=1.7.0
pkgrel=1
pkgdesc="Checks game mod files for common mistakes and warns about them."
arch=('x86_64')
url="https://github.com/amtep/ck3-tiger"
license=('GPL3')
depends=()
source=("https://github.com/amtep/ck3-tiger/releases/download/v${pkgver}/${_basename}-linux-v${pkgver}.tar.gz")
sha256sums=('78365e3f1cb883aecf2520570b1b1355427bbced86dc075300855c8db47729d3')
package() {
cd "${srcdir}/${_basename}-linux-v${pkgver}"
install -Dm755 "${_basename}" "${pkgdir}/usr/bin/${_basename}"
install -Dm755 "${_basename}-auto" "${pkgdir}/usr/bin/${_basename}-auto"
install -Dm644 "${_basename}.conf" "${pkgdir}/usr/share/${pkgname}/${_basename}.conf.example"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 CONTRIBUTORS.md "${pkgdir}/usr/share/doc/${pkgname}/CONTRIBUTORS.md"
install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
install -Dm644 TODO.md "${pkgdir}/usr/share/doc/${pkgname}/TODO.md"
install -Dm644 filter.md "${pkgdir}/usr/share/doc/${pkgname}/filter.md"
}