summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorabsrdspc2021-07-19 12:03:25 +0300
committerabsrdspc2021-07-19 12:04:34 +0300
commit6488f0cb359c1a45b6478ade5c8bda1f2b9842fc (patch)
tree184e3906187b49572a68be6fdab6e29b3b936522
parent45d360e3f64f6047bfd1c8300f3f47095a5a675d (diff)
downloadaur-6488f0cb359c1a45b6478ade5c8bda1f2b9842fc.tar.gz
fix build
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD6
2 files changed, 2 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9833d555fcbf..44bd28a77cf8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = arc_unpacker-git
pkgdesc = CLI tool for extracting images and sounds from visual novels.
pkgver = r2426.b9843a13
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/vn-tools/arc_unpacker
arch = x86_64
license = GPL
@@ -17,12 +17,9 @@ pkgbase = arc_unpacker-git
conflicts = arc_unpacker
source = arc_unpacker-git::git+https://github.com/vn-tools/arc_unpacker.git
source = catch.hpp::https://raw.githubusercontent.com/catchorg/Catch2/v2.13.4/single_include/catch2/catch.hpp
- source = lcg.patch
source = etc.patch
sha256sums = SKIP
sha256sums = 6e0fa3dd160891a01c1f3b34e8bcd6e0140abe08eca022e390027f27dec2050b
- sha256sums = 37f3c1f1969ec9ed537a5cff79e3eb712fb2f317fcf99508eaa8bb250104a003
sha256sums = e8c02f338aca81df79f6d5c0e302322abd776b2aeb36eb0a57ee93335c0da216
pkgname = arc_unpacker-git
-
diff --git a/PKGBUILD b/PKGBUILD
index 00f2debbdd80..8dd37967fded 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=arc_unpacker-git
_pkgname=arc_unpacker
pkgver=r2426.b9843a13
-pkgrel=1
+pkgrel=2
pkgdesc="CLI tool for extracting images and sounds from visual novels."
arch=(x86_64)
url="https://github.com/vn-tools/arc_unpacker"
@@ -14,11 +14,9 @@ provides=('arc_unpacker-git' 'arc_unpacker')
conflicts=('arc_unpacker')
source=("$pkgname::git+https://github.com/vn-tools/arc_unpacker.git"
'catch.hpp::https://raw.githubusercontent.com/catchorg/Catch2/v2.13.4/single_include/catch2/catch.hpp'
- 'lcg.patch'
'etc.patch')
sha256sums=('SKIP'
'6e0fa3dd160891a01c1f3b34e8bcd6e0140abe08eca022e390027f27dec2050b'
- '37f3c1f1969ec9ed537a5cff79e3eb712fb2f317fcf99508eaa8bb250104a003'
'e8c02f338aca81df79f6d5c0e302322abd776b2aeb36eb0a57ee93335c0da216')
pkgver() {
@@ -32,8 +30,6 @@ prepare() {
sed -i "s|\/\.\.\/|\/|g" CMakeLists.txt
# fix etc/ path
git apply "$srcdir/etc.patch"
- # fix logic_error
- git apply "$srcdir/lcg.patch"
# fix tests
cp "$srcdir/catch.hpp" tests/test_support/catch.h
}