summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRuben Van Boxem2020-11-28 12:58:37 +0100
committerRuben Van Boxem2020-11-28 12:58:37 +0100
commitf83c4d333795bd0c43b7aa4f0d70a439a69417ec (patch)
tree812bafd7813d4a10c185f14dd6bea47143f1a86d
parent1a9b34d2b090a695c08ce4682d59cafde93f0d6c (diff)
downloadaur-f83c4d333795bd0c43b7aa4f0d70a439a69417ec.tar.gz
fix using wrong sources
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD10
2 files changed, 7 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 997a540355de..14e7926f6194 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = stack-client
pkgdesc = The STACK Client provides file sync to desktop clients.
pkgver = 2.6.5
- pkgrel = 1
+ pkgrel = 2
url = https://www.transip.nl/stack/
arch = x86_64
license = GPL2
diff --git a/PKGBUILD b/PKGBUILD
index 6cf5de9ca065..a728ad8b2f00 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=stack-client
pkgver=2.6.5
-pkgrel=1
+pkgrel=2
pkgdesc="The STACK Client provides file sync to desktop clients."
arch=('x86_64')
url='https://www.transip.nl/stack/'
@@ -19,9 +19,11 @@ sha256sums=('935385ff07174a4d85c2d4eda4d069aeb4aa8d0e68865b2cf8a24ca8cc883288'
prepare() {
patch -p1 < ${srcdir}/APPLICATION_NAME.patch
- cd ${srcdir}
- # these seem to be already applied this time...
- #. patch.sh
+ cd desktop-${pkgver}
+ for file in ${srcdir}/patches/*
+ do
+ patch -p1 < ${file}
+ done
}
build() {