summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimo Sarawinski2018-08-10 06:50:45 +0200
committerTimo Sarawinski2018-08-10 06:50:45 +0200
commit17cd5bf0b71f626ce066d6086152b4119378efad (patch)
treef07afacd51af719b1bd549e79f221dbaf601e7e7
parentf47088e81ca1a568b37c36305480631bdf5049f8 (diff)
downloadaur-17cd5bf0b71f626ce066d6086152b4119378efad.tar.gz
fix
-rwxr-xr-x[-rw-r--r--].SRCINFO2
-rw-r--r--1.patch12
-rwxr-xr-x[-rw-r--r--]PKGBUILD5
3 files changed, 2 insertions, 17 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e9d916bccb43..1eda91372c84 100644..100755
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -13,10 +13,8 @@ pkgbase = sasquatch
depends = lz4
source = git+https://github.com/devttys0/sasquatch
source = read_fragment_table_n_stack_overflow-fix.patch
- source = 1.patch
sha256sums = SKIP
sha256sums = 120c2d208085129235bf998b1c22abee19db26120a98174b9beb5edd7b9c84e9
- sha256sums = SKIP
pkgname = sasquatch
diff --git a/1.patch b/1.patch
deleted file mode 100644
index 5d14a1d00b78..000000000000
--- a/1.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- unsquashfs.c
-+++ unsquashfs.c
-@@ -32,8 +32,8 @@
- #include "stdarg.h"
-
- #include <sys/sysinfo.h>
--#include <sys/types.h>
- #include <sys/time.h>
-+#include <sys/sysmacros.h>
- #include <sys/resource.h>
- #include <limits.h>
- #include <ctype.h>
diff --git a/PKGBUILD b/PKGBUILD
index c741a76f04ab..83aa43ae7baa 100644..100755
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,9 +14,9 @@ arch=('i686' 'x86_64')
depends=('gzip' 'zlib' 'lzo' 'xz' 'lz4')
source=('git+https://github.com/devttys0/sasquatch'
'read_fragment_table_n_stack_overflow-fix.patch'
- '1.patch')
+ )
sha256sums=('SKIP'
- '120c2d208085129235bf998b1c22abee19db26120a98174b9beb5edd7b9c84e9' 'SKIP')
+ '120c2d208085129235bf998b1c22abee19db26120a98174b9beb5edd7b9c84e9' )
build() {
cd ${srcdir}/sasquatch/
@@ -25,7 +25,6 @@ build() {
cd squashfs4.3
patch -p0 < ../patches/patch0.txt
cd squashfs-tools
- patch -p0 < ${srcdir}/1.patch
patch -p0 -i "${srcdir}/read_fragment_table_n_stack_overflow-fix.patch"
make
}