summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Husmann2015-07-12 22:33:42 +0200
committerStefan Husmann2015-07-12 22:33:42 +0200
commit5e46a67f06a58441cf0108accb5a35f37fd5ba64 (patch)
tree2ab37c2ad9988ad02eb91f72421b983bc5779a2b
parentcea0fd6c869ee7a35af4a8ccd0c1b73242434685 (diff)
downloadaur-5e46a67f06a58441cf0108accb5a35f37fd5ba64.tar.gz
Update
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD16
2 files changed, 11 insertions, 13 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 27fbb4bd482d..5d0f8a01cb91 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = bibtool
pkgdesc = Command line manipulation of BibTeX files.
- pkgver = 2.60
+ pkgver = 2.61
pkgrel = 1
url = http://www.gerd-neugebauer.de/software/TeX/BibTool/
arch = i686
@@ -8,9 +8,9 @@ pkgbase = bibtool
license = GPL
makedepends = tar
depends = texlive-bin
- noextract = BibTool-2.60.tar.gz
- source = http://www.gerd-neugebauer.de/software/TeX/BibTool/BibTool-2.60.tar.gz
- md5sums = 1c959cadfa80e36dd1eca679859b9d1e
+ noextract = BibTool-2.61.tar.gz
+ source = http://ctan.mirrors.hoobly.com/biblio/bibtex/utils/bibtool.zip
+ md5sums = 1395c3322550a60f50053d639935b380
pkgname = bibtool
diff --git a/PKGBUILD b/PKGBUILD
index dc3738eb96cf..40d4a200a668 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=bibtool
-pkgver=2.60
+pkgver=2.61
pkgrel=1
pkgdesc="Command line manipulation of BibTeX files."
arch=('i686' 'x86_64')
@@ -10,24 +10,22 @@ url="http://www.gerd-neugebauer.de/software/TeX/BibTool/"
license=('GPL')
depends=('texlive-bin')
makedepends=('tar')
-source=(http://www.gerd-neugebauer.de/software/TeX/BibTool/BibTool-$pkgver.tar.gz)
-md5sums=('1c959cadfa80e36dd1eca679859b9d1e')
+source=(http://ctan.mirrors.hoobly.com/biblio/bibtex/utils/bibtool.zip)
+md5sums=('1395c3322550a60f50053d639935b380')
noextract=("BibTool-$pkgver.tar.gz")
-prepare() {
- # bsdtar has strange problems unpackung this, so let's use gnu tar
- tar xf BibTool-$pkgver.tar.gz
-}
build() {
- cd "$srcdir/BibTool"
+ cd "$srcdir/bibtool"
+ bsdtar -xf BibTool-$pkgver.tar.gz
+ cd BibTool
autoreconf
./configure --prefix=/usr
make
}
package() {
- cd "$srcdir/BibTool"
+ cd "$srcdir/bibtool/BibTool"
install -d "$pkgdir"/usr/bin
make INSTALLPREFIX=$pkgdir install
}