summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Severance2022-12-16 20:47:46 -0500
committerChris Severance2022-12-16 20:47:46 -0500
commit7f487b24f7b865fb79a770c74b753fb824ec11a6 (patch)
treea41d39f58cf1b6996363e9f5145958a309900a7a
parent109bb5ac14672db58be8d9520ccac1a04bd86982 (diff)
downloadaur-7f487b24f7b865fb79a770c74b753fb824ec11a6.tar.gz
autu: Update to 10.0.0-1
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD9
2 files changed, 8 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c0cbf910afd1..470c23e14dc5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = ghostpdl
pkgdesc = Ghostscript RIP for PS, PDF, PCL-5, PCL-XL, SVG and XPS.
- pkgver = 9.56.1
+ pkgver = 10.0.0
pkgrel = 1
url = https://www.ghostscript.com
arch = i686
@@ -11,8 +11,8 @@ pkgbase = ghostpdl
depends = freeglut
depends = libjpeg
depends = libxt
- source = https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs9561/ghostpdl-9.56.1.tar.xz
- md5sums = 03535e1052d853165a550c4d4da182d7
- sha256sums = 05e64c19853e475290fd608a415289dc21892c4d08ee9086138284b6addcb299
+ source = https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs1000/ghostpdl-10.0.0.tar.xz
+ md5sums = 745160b588456443c0dfc16478c5ec69
+ sha256sums = 8f2b7941f60df694b4f5c029b739007f7c4e0d43858471ae481e319a967d5d8b
pkgname = ghostpdl
diff --git a/PKGBUILD b/PKGBUILD
index f36db1151ffe..7bfcef8fba1c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -16,7 +16,7 @@
set -u
pkgname='ghostpdl'
-pkgver='9.56.1'
+pkgver='10.0.0'
pkgrel='1'
pkgdesc='Ghostscript RIP for PS, PDF, PCL-5, PCL-XL, SVG and XPS.'
arch=('i686' 'x86_64')
@@ -28,8 +28,8 @@ depends=('ghostscript' 'glu' 'freeglut' 'libjpeg' 'libxt')
_giturl="https://github.com/ArtifexSoftware/${pkgname}-downloads"
_verwatch=("${_giturl}/releases.atom" '\s\+<title>Ghostscript/GhostPDL \([0-9\.]\+\)</title>.*' 'f')
source=("${_giturl}/releases/download/gs${pkgver//./}/${pkgname}-${pkgver}.tar.xz")
-md5sums=('03535e1052d853165a550c4d4da182d7')
-sha256sums=('05e64c19853e475290fd608a415289dc21892c4d08ee9086138284b6addcb299')
+md5sums=('745160b588456443c0dfc16478c5ec69')
+sha256sums=('8f2b7941f60df694b4f5c029b739007f7c4e0d43858471ae481e319a967d5d8b')
prepare() {
set -u
@@ -45,8 +45,7 @@ build() {
if [ ! -s 'Makefile' ]; then
./configure --prefix='/usr'
fi
- local _nproc="$(nproc)"; _nproc=$((_nproc>8?8:_nproc))
- nice make -s -j "${_nproc}"
+ nice make -s
set +u
}