diff options
author | Fijxu | 2024-01-13 00:28:44 -0300 |
---|---|---|
committer | Fijxu | 2024-01-13 00:28:44 -0300 |
commit | 0530f944f65e5ff6fb8fd5fc2c9ab48b008defd7 (patch) | |
tree | c03e2e3364d808e8b0c2060936a67c0e9bac65a1 | |
parent | 503babee551e5de8a5748a0d29b9a2e476adb584 (diff) | |
download | aur-0530f944f65e5ff6fb8fd5fc2c9ab48b008defd7.tar.gz |
Update package
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 14 |
2 files changed, 9 insertions, 11 deletions
@@ -1,7 +1,7 @@ pkgbase = cpp2il-dev-git pkgdesc = Work-in-progress tool to reverse unity's IL2CPP toolchain. (git version) (development branch) - pkgver = 2022.1.0.pre.release.12.r6.g2acc70e - pkgrel = 2 + pkgver = 2022.1.0.pre.release.14.r0.gec789f4 + pkgrel = 1 url = https://github.com/SamboyCoding/Cpp2IL/tree/development arch = x86_64 arch = aarch64 @@ -9,7 +9,7 @@ pkgbase = cpp2il-dev-git makedepends = git makedepends = dotnet-host makedepends = dotnet-sdk - depends = dotnet-runtime + depends = dotnet-runtime-7.0 source = cpp2il-dev::git+https://github.com/SamboyCoding/Cpp2IL.git#branch=development sha512sums = SKIP @@ -1,14 +1,14 @@ -# Maintainer: Fijxu <fijxu[at]zzls[dot]xyz> +# Maintainer: Fijxu <fijxu at nadeko dot net> pkgname=cpp2il-dev-git _pkgname=cpp2il-dev -pkgver=2022.1.0.pre.release.12.r6.g2acc70e -pkgrel=2 +pkgver=2022.1.0.pre.release.14.r0.gec789f4 +pkgrel=1 pkgdesc="Work-in-progress tool to reverse unity's IL2CPP toolchain. (git version) (development branch)" arch=('x86_64' 'aarch64') url='https://github.com/SamboyCoding/Cpp2IL/tree/development' license=('MIT') -depends=('dotnet-runtime') +depends=('dotnet-runtime-7.0') makedepends=('git' 'dotnet-host' 'dotnet-sdk') source=("$_pkgname::git+https://github.com/SamboyCoding/Cpp2IL.git#branch=development") sha512sums=('SKIP') @@ -20,9 +20,8 @@ pkgver() { build() { cd $_pkgname/Cpp2IL - dotnet restore - dotnet build Cpp2IL.csproj -c Release -r linux-x64 -f net7.0 --no-self-contained + dotnet build Cpp2IL.csproj -c Release -r linux-x64 --no-self-contained } package() { @@ -39,6 +38,5 @@ EOF install -dm 755 "$pkgdir/usr/share/$_pkgname" install -Dm 644 -t "$pkgdir/usr/share/doc/$_pkgname/" *.md - cp -a --no-preserve=ownership ./Cpp2IL/bin/Release/net7.0/linux-x64/* \ - "$pkgdir/usr/share/$_pkgname/" + cp -a --no-preserve=ownership ./Cpp2IL/bin/Release/net7.0/linux-x64/* "$pkgdir/usr/share/$_pkgname/" } |