summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBermond2016-02-13 20:39:56 -0200
committerBermond2016-02-13 20:39:56 -0200
commitc178ed5ed4ba1fbfd24ebc4dace5ef4c4c3ca5f0 (patch)
tree088c0db8a058932a1104b65dedb0ebbd1bd16c82
parentfad12a03b6b1d3a640de4a9d49db1c3f9b3526db (diff)
downloadaur-c178ed5ed4ba1fbfd24ebc4dace5ef4c4c3ca5f0.tar.gz
Changed last separator character in version number string
Changed from _ to . (underline to dot) ImageMagick uses a hyphen in its upstream version number. Although the Arch Linix Wiki recommends changing hyphen for underline in upstream version number strings the imagemagick provided in [extra] repository uses a dot. Other imagemagick AUR packages also uses a dot. It also seems more pleasant to the eye to use a dot.
-rw-r--r--.SRCINFO6
-rwxr-xr-xPKGBUILD4
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7490b959f803..ea4e0d6cccc8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Sat Feb 13 22:22:21 UTC 2016
+# Sat Feb 13 22:27:26 UTC 2016
pkgbase = imagemagick-full
pkgdesc = An image viewing/manipulation program (Q32 HDRI with all libs and features)
- pkgver = 6.9.3_4
- pkgrel = 1
+ pkgver = 6.9.3.4
+ pkgrel = 2
url = http://www.imagemagick.org/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index ca02221116d1..b9d04b148b9c 100755
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -17,8 +17,8 @@ _windows_font_dir="/usr/share/fonts/WindowsFonts"
_srcname="ImageMagick"
_srcver="6.9.3-4"
pkgname=imagemagick-full
-pkgver="$(echo ${_srcver} | tr '-' '_')"
-pkgrel=1
+pkgver="$(echo ${_srcver} | tr '-' '.')"
+pkgrel=2
pkgdesc="An image viewing/manipulation program (Q32 HDRI with all libs and features)"
arch=('i686' 'x86_64')
url="http://www.imagemagick.org/"