From 48dd799c1e1e0a1bc57368c0626a27936cb16eb0 Mon Sep 17 00:00:00 2001 From: kth5 Date: Sun, 18 Aug 2024 10:00:28 +0200 Subject: [PATCH] * update maeparser to 1.3.1-3 --- maeparser/.SRCINFO | 17 +++++++++++++++++ maeparser/.nvchecker.toml | 5 +++++ maeparser/PKGBUILD | 19 +++++++++++-------- 3 files changed, 33 insertions(+), 8 deletions(-) create mode 100644 maeparser/.SRCINFO create mode 100644 maeparser/.nvchecker.toml diff --git a/maeparser/.SRCINFO b/maeparser/.SRCINFO new file mode 100644 index 0000000000..74ff9e8e05 --- /dev/null +++ b/maeparser/.SRCINFO @@ -0,0 +1,17 @@ +pkgbase = maeparser + pkgdesc = Maestro file parser + pkgver = 1.3.1 + pkgrel = 3 + url = https://github.com/schrodinger/maeparser + arch = x86_64 + license = MIT + makedepends = boost + makedepends = cmake + makedepends = git + depends = boost-libs + depends = gcc-libs + depends = glibc + source = git+https://github.com/schrodinger/maeparser#tag=v1.3.1 + sha256sums = 2a2e75dcce1758b4917a700967bc4aa9db0166a7f436882f0f2360c58e1bcf26 + +pkgname = maeparser diff --git a/maeparser/.nvchecker.toml b/maeparser/.nvchecker.toml new file mode 100644 index 0000000000..1e1c4c52f7 --- /dev/null +++ b/maeparser/.nvchecker.toml @@ -0,0 +1,5 @@ +[maeparser] +source = 'github' +github = 'schrodinger/maeparser' +use_max_tag = true +prefix = 'v' diff --git a/maeparser/PKGBUILD b/maeparser/PKGBUILD index 2684f41064..bba1a85995 100644 --- a/maeparser/PKGBUILD +++ b/maeparser/PKGBUILD @@ -3,24 +3,27 @@ pkgname=maeparser pkgver=1.3.1 -pkgrel=2 +pkgrel=3 pkgdesc='Maestro file parser' arch=(x86_64 powerpc64le powerpc64 powerpc riscv64) url='https://github.com/schrodinger/maeparser' license=(MIT) -depends=(boost-libs) -makedepends=(cmake boost) -source=(https://github.com/schrodinger/maeparser/archive/v$pkgver/$pkgname-$pkgver.tar.gz) -sha256sums=('a8d80f67d1b9be6e23b9651cb747f4a3200132e7d878a285119c86bf44568e36') +depends=(boost-libs + gcc-libs + glibc) +makedepends=(boost + cmake + git) +source=(git+https://github.com/schrodinger/maeparser#tag=v$pkgver) +sha256sums=('2a2e75dcce1758b4917a700967bc4aa9db0166a7f436882f0f2360c58e1bcf26') build() { - cmake -B build -S $pkgname-$pkgver \ + cmake -B build -S $pkgname \ -DCMAKE_INSTALL_PREFIX=/usr cmake --build build } package() { DESTDIR="$pkgdir" cmake --install build - - install -Dm644 $pkgname-$pkgver/LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname + install -Dm644 $pkgname/LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname }