arcdps-log-manager 1.0.2

This commit is contained in:
Joseph Lansdowne 2020-12-13 16:32:55 +00:00
commit 06c19eee6d
2 changed files with 43 additions and 0 deletions

16
.SRCINFO Normal file
View file

@ -0,0 +1,16 @@
pkgbase = arcdps-log-manager
pkgdesc = Manager for Guild Wars 2 arcdps EVTC logs
pkgver = 1.0.2
pkgrel = 1
url = https://gw2scratch.com/tools/manager
arch = x86_64
license = MIT
makedepends = git
makedepends = mono-msbuild
depends = dotnet-sdk
depends = gtk3
source = git+https://github.com/gw2scratch/evtc.git#tag=manager-v1.0.2
sha256sums = SKIP
pkgname = arcdps-log-manager

27
PKGBUILD Normal file
View file

@ -0,0 +1,27 @@
# Maintainer: Joseph Lansdowne <J49137@gmail.com>
pkgname=arcdps-log-manager
pkgver=1.0.2
pkgrel=1
pkgdesc="Manager for Guild Wars 2 arcdps EVTC logs"
arch=(x86_64)
url="https://gw2scratch.com/tools/manager"
license=(MIT)
makedepends=(git mono-msbuild)
depends=(dotnet-sdk gtk3)
source=("git+https://github.com/gw2scratch/evtc.git#tag=manager-v$pkgver")
sha256sums=(SKIP)
build () {
cd "$srcdir/evtc"
msbuild -target:Restore,Build ArcdpsLogManager.Gtk -p:Configuration=Release
}
package () {
install -d "$pkgdir/opt/" "$pkgdir/usr/bin/"
cp -Rl "$srcdir/evtc/ArcdpsLogManager.Gtk/bin/Release"/*app*/ \
"$pkgdir/opt/$pkgname"
ln -s "/opt/$pkgname/GW2Scratch.ArcdpsLogManager.Gtk" \
"$pkgdir/usr/bin/$pkgname"
install -D "$srcdir/evtc/LICENSE" \
"$pkgdir"/usr/share/licenses/arcdps-log-manager/LICENSE
}