summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeon Spengler2021-09-02 22:27:59 +0200
committerDeon Spengler2021-09-02 22:27:59 +0200
commit67ab9095ae506a6c34c55aaa4fd1f88c707af785 (patch)
treee4cdef4581f2d7f6378ad61a9e9b6ee3a84ba6c1
parent3a47539d28863add82787b438e06c6125dc2957c (diff)
downloadaur-67ab9095ae506a6c34c55aaa4fd1f88c707af785.tar.gz
Remove configure patch
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD17
-rw-r--r--sope_configure.patch14
3 files changed, 6 insertions, 29 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 78dad6d00cbf..2b7b287e3336 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = sope
pkgdesc = application server used by SOGo
pkgver = 5.2.0
- pkgrel = 1
+ pkgrel = 2
url = http://www.sogo.nu/files/downloads/SOGo/Sources/
arch = x86_64
license = GPL
@@ -21,8 +21,6 @@ pkgbase = sope
replaces = sope2
options = !strip
source = http://www.sogo.nu/files/downloads/SOGo/Sources/SOPE-5.2.0.tar.gz
- source = sope_configure.patch
sha256sums = 21b9c571b5c348e655490b37d2b355b7f1b1e40cbb8b709e560951503aff94fb
- sha256sums = 7ff3387daffd15b5f97146da1fd61aefc9591b7b6a41f1f0e60b572106fdbc9a
pkgname = sope
diff --git a/PKGBUILD b/PKGBUILD
index de34c8210b13..9de2711b726d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
pkgname=sope
pkgdesc="application server used by SOGo"
pkgver=5.2.0
-pkgrel=1
+pkgrel=2
arch=('x86_64')
url="http://www.sogo.nu/files/downloads/SOGo/Sources/"
license=('GPL')
@@ -24,23 +24,16 @@ optdepends=('libxml2: parse XML coniguration files'
'openldap: run directory server for sogo locally'
'openssl: create SSL secured connectons'
'postgresql: run database server for sogo locally')
-source=("http://www.sogo.nu/files/downloads/SOGo/Sources/SOPE-${pkgver}.tar.gz"
- "sope_configure.patch")
-sha256sums=('21b9c571b5c348e655490b37d2b355b7f1b1e40cbb8b709e560951503aff94fb'
- '7ff3387daffd15b5f97146da1fd61aefc9591b7b6a41f1f0e60b572106fdbc9a')
-
-prepare() {
- cd "${srcdir}/SOPE"
- patch configure ../sope_configure.patch
-}
+source=("http://www.sogo.nu/files/downloads/SOGo/Sources/SOPE-${pkgver}.tar.gz")
+sha256sums=('21b9c571b5c348e655490b37d2b355b7f1b1e40cbb8b709e560951503aff94fb')
build() {
- cd "${srcdir}/SOPE"
+ cd SOPE
./configure --with-gnustep --disable-strip --disable-debug
make
}
package() {
- cd "${srcdir}/SOPE"
+ cd SOPE
make install DESTDIR="${pkgdir}"
}
diff --git a/sope_configure.patch b/sope_configure.patch
deleted file mode 100644
index 1037e83df38e..000000000000
--- a/sope_configure.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-332,342c332
-< UNAME=`uname`
-< if [ "X${UNAME}" = "XLinux" ];then
-< UNAME=`uname -m`
-< if [ ${UNAME} = x86_64 -o ${UNAME} = sparc64 -o ${UNAME} = ppc64 ];then
-< cfgwrite "CGS_LIBDIR_NAME:=lib64"
-< else
-< cfgwrite "CGS_LIBDIR_NAME:=lib"
-< fi
-< else
-< cfgwrite "CGS_LIBDIR_NAME:=lib"
-< fi
----
-> cfgwrite "CGS_LIBDIR_NAME:=lib"