summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Ginthoer2016-09-16 23:51:26 +0200
committerLazarus5552016-09-17 00:01:20 +0200
commit4bcbd1cc90e77fd7dea2b4210384bc8c03687614 (patch)
tree32d78925bd92ed16af0416f1b38094fa88ffbe40
parentbcea3d16a0d5229f3c9e4da14125e75e1823ce3f (diff)
downloadaur-4bcbd1cc90e77fd7dea2b4210384bc8c03687614.tar.gz
This updates the package to 0.2.10 and fixes the pathname issue
(see comments on ats2-postiats AUR page) Several files mention the version number 0.2.9 even though it is version 0.2.10 The files are: ./VERSION ./configure.ac This is a cheap fix. The "bug" has been reported upstream. Also ats2-contrib can now be installed properly.
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD7
2 files changed, 8 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index eb57625d04c6..ea9722b5fbda 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,6 @@
-# Generated by mksrcinfo v8
-# Tue Aug 16 18:55:44 UTC 2016
pkgbase = ats2-postiats
pkgdesc = Statically typed programming language
- pkgver = 0.2.9
+ pkgver = 0.2.10
pkgrel = 1
url = http://www.ats-lang.org/
arch = i686
@@ -13,8 +11,8 @@ pkgbase = ats2-postiats
options = staticlibs
options = !emptydirs
options = !makeflags
- source = http://downloads.sourceforge.net/project/ats2-lang/ats2-lang/ats2-postiats-0.2.9/ATS2-Postiats-0.2.9.tgz
- sha256sums = e93a7296f521eae0e7a0af9cfdda60c98a91d5eabda172b4fe2c3d5d708284e7
+ source = http://downloads.sourceforge.net/project/ats2-lang/ats2-lang/ats2-postiats-0.2.10/ATS2-Postiats-0.2.10.tgz
+ sha256sums = 27d115219472c994866459f0024310abc41871f0d1b38b1a346ba9f54d07ce48
pkgname = ats2-postiats
diff --git a/PKGBUILD b/PKGBUILD
index 128961a2bd9b..c04459245c50 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=ats2-postiats
_pkgname=ATS2-Postiats
-pkgver=0.2.9
+pkgver=0.2.10
pkgrel=1
pkgdesc="Statically typed programming language"
arch=('i686' 'x86_64')
@@ -12,10 +12,13 @@ depends=('bash' 'gmp')
optdepends=()
options=('staticlibs' '!emptydirs' '!makeflags')
source=("http://downloads.sourceforge.net/project/ats2-lang/ats2-lang/ats2-postiats-${pkgver}/${_pkgname}-${pkgver}.tgz")
-sha256sums=('e93a7296f521eae0e7a0af9cfdda60c98a91d5eabda172b4fe2c3d5d708284e7')
+sha256sums=('27d115219472c994866459f0024310abc41871f0d1b38b1a346ba9f54d07ce48')
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
+ sed -i s/0.2.9/0.2.10/g VERSION
+ sed -i s/0.2.9/0.2.10/g configure.ac
+ autoconf
./configure --prefix=/usr
make all
}