summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO9
-rw-r--r--PKGBUILD11
-rw-r--r--numdiff.install11
3 files changed, 5 insertions, 26 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 329f8986a97e..5377f02c6a24 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,17 +1,14 @@
pkgbase = numdiff
pkgdesc = Program to compare files ignoring small numeric differences
- pkgver = 5.8.1
+ pkgver = 5.9.0
pkgrel = 1
url = http://www.nongnu.org/numdiff/
- install = numdiff.install
arch = i686
arch = x86_64
license = GPL3
- makedepends = gmp
depends = gmp
- options = !buildflags
- source = http://savannah.nongnu.org/download/numdiff/numdiff-5.8.1.tar.gz
- md5sums = a295eb391f6cb1578209fc6b4f9d994e
+ source = http://savannah.nongnu.org/download/numdiff/numdiff-5.9.0.tar.gz
+ md5sums = 794461a7285d8b9b1f2c4a8149889ea6
pkgname = numdiff
diff --git a/PKGBUILD b/PKGBUILD
index 1157bf81faba..f39d0c42f562 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,21 +1,14 @@
# Contributor: Anton Leontiev <bunder /at/ t-25.ru>
pkgname=numdiff
-pkgver=5.8.1
+pkgver=5.9.0
pkgrel=1
arch=('i686' 'x86_64')
pkgdesc='Program to compare files ignoring small numeric differences'
url='http://www.nongnu.org/numdiff/'
license=('GPL3')
-makedepends=('gmp')
depends=('gmp')
source=(http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz)
-install=numdiff.install
-md5sums=('a295eb391f6cb1578209fc6b4f9d994e')
-options=(!buildflags)
-
-# Don't allow '--enable-optimization' or '-O' in CFLAGS.
-# See 'Known issues' on the site
-# The bug reproduces on GCC 4.8.1 x86_64
+md5sums=('794461a7285d8b9b1f2c4a8149889ea6')
build() {
cd $pkgname-$pkgver
diff --git a/numdiff.install b/numdiff.install
deleted file mode 100644
index e4fb87b5ce30..000000000000
--- a/numdiff.install
+++ /dev/null
@@ -1,11 +0,0 @@
-post_install() {
- [ -x usr/bin/install-info ] && install-info /usr/share/info/numdiff.info.gz /usr/share/info/dir 2> /dev/null
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] && install-info --delete /usr/share/info/numdiff.info.gz /usr/share/info/dir 2> /dev/null
-}