commit 4ce834cc7f59dd1a6e14ebeff3e152c4d2c151e2 Author: Relish0171 Date: Sat May 3 23:32:56 2025 +0200 Initial Commit diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..c9c0f74827e4 --- /dev/null +++ b/.SRCINFO @@ -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 diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000000..141c3f1c7dd7 --- /dev/null +++ b/LICENSE @@ -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. diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..6b516ef9dfdd --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Relish0171 +_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" +}