[arch-commits] Commit in meataxe (5 files)

Antonio Rojas arojas at archlinux.org
Fri Mar 25 20:30:16 UTC 2016


    Date: Friday, March 25, 2016 @ 21:30:16
  Author: arojas
Revision: 168390

archrelease: copy trunk to community-i686, community-x86_64

Added:
  meataxe/repos/
  meataxe/repos/community-i686/
  meataxe/repos/community-i686/PKGBUILD
    (from rev 168389, meataxe/trunk/PKGBUILD)
  meataxe/repos/community-x86_64/
  meataxe/repos/community-x86_64/PKGBUILD
    (from rev 168389, meataxe/trunk/PKGBUILD)

---------------------------+
 community-i686/PKGBUILD   |   51 ++++++++++++++++++++++++++++++++++++++++++++
 community-x86_64/PKGBUILD |   51 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 102 insertions(+)

Copied: meataxe/repos/community-i686/PKGBUILD (from rev 168389, meataxe/trunk/PKGBUILD)
===================================================================
--- repos/community-i686/PKGBUILD	                        (rev 0)
+++ repos/community-i686/PKGBUILD	2016-03-25 20:30:16 UTC (rev 168390)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=meataxe
+pkgver=2.4.24
+pkgrel=3
+pkgdesc="A set of programs for working with matrix representations over finite fields"
+arch=(i686 x86_64)
+url="http://www.math.rwth-aachen.de/~MTX/"
+license=(GPL)
+depends=()
+#source=("http://www.math.rwth-aachen.de/~MTX/$pkgname-$pkgver.tar.gz")
+source=("http://trac.sagemath.org/raw-attachment/ticket/12103/meataxe-$pkgver.tar.gz"
+	"http://git.sagemath.org/sage.git/plain/build/pkgs/meataxe/patches/IO_fixes.patch"
+	"http://git.sagemath.org/sage.git/plain/build/pkgs/meataxe/patches/StrassenWinogradImplementation.patch"
+	"http://git.sagemath.org/sage.git/plain/build/pkgs/meataxe/patches/StrassenWinogradUsage.patch"
+	"http://git.sagemath.org/sage.git/plain/build/pkgs/meataxe/patches/TweakEchelon.patch"
+	"http://git.sagemath.org/sage.git/plain/build/pkgs/meataxe/patches/UseErrorPropagation.patch")
+md5sums=('e0f384e37a69671c73c2904e4e69dc01'
+         '5fbe031993c9aa0c41e6d9138748d902'
+         'b2ca48d166c538daa80ef7e6646dbb97'
+         '6683ff2a272a3ea0e3851a3826684caf'
+         '2eeae8b89e018e86205140d316712a66'
+         'a3831f351ca465d8dc57a922e4c52b62')
+
+prepare() {
+  cd $pkgname-$pkgver
+  for _patch in IO_fixes StrassenWinogradImplementation StrassenWinogradUsage TweakEchelon UseErrorPropagation; do
+   patch -p1 -i ../$_patch.patch
+  done
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  export CFLAGS1="$CFLAGS -std=gnu99 -O -Wall -fPIC"
+  export ZZZ=0
+  touch Makefile.conf
+# make
+  make tmp/libmtx.a
+}
+
+package() {
+  cd $pkgname-$pkgver
+  
+  mkdir -p "$pkgdir"/usr/{include,lib,share/doc/meataxe}
+#  install -m755 bin/* "$pkgdir"/usr/bin
+  install -m644 tmp/libmtx.a "$pkgdir"/usr/lib
+  install -m644 src/meataxe.h "$pkgdir"/usr/include
+  install -m644 doc/* "$pkgdir"/usr/share/doc/meataxe
+}

Copied: meataxe/repos/community-x86_64/PKGBUILD (from rev 168389, meataxe/trunk/PKGBUILD)
===================================================================
--- repos/community-x86_64/PKGBUILD	                        (rev 0)
+++ repos/community-x86_64/PKGBUILD	2016-03-25 20:30:16 UTC (rev 168390)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=meataxe
+pkgver=2.4.24
+pkgrel=3
+pkgdesc="A set of programs for working with matrix representations over finite fields"
+arch=(i686 x86_64)
+url="http://www.math.rwth-aachen.de/~MTX/"
+license=(GPL)
+depends=()
+#source=("http://www.math.rwth-aachen.de/~MTX/$pkgname-$pkgver.tar.gz")
+source=("http://trac.sagemath.org/raw-attachment/ticket/12103/meataxe-$pkgver.tar.gz"
+	"http://git.sagemath.org/sage.git/plain/build/pkgs/meataxe/patches/IO_fixes.patch"
+	"http://git.sagemath.org/sage.git/plain/build/pkgs/meataxe/patches/StrassenWinogradImplementation.patch"
+	"http://git.sagemath.org/sage.git/plain/build/pkgs/meataxe/patches/StrassenWinogradUsage.patch"
+	"http://git.sagemath.org/sage.git/plain/build/pkgs/meataxe/patches/TweakEchelon.patch"
+	"http://git.sagemath.org/sage.git/plain/build/pkgs/meataxe/patches/UseErrorPropagation.patch")
+md5sums=('e0f384e37a69671c73c2904e4e69dc01'
+         '5fbe031993c9aa0c41e6d9138748d902'
+         'b2ca48d166c538daa80ef7e6646dbb97'
+         '6683ff2a272a3ea0e3851a3826684caf'
+         '2eeae8b89e018e86205140d316712a66'
+         'a3831f351ca465d8dc57a922e4c52b62')
+
+prepare() {
+  cd $pkgname-$pkgver
+  for _patch in IO_fixes StrassenWinogradImplementation StrassenWinogradUsage TweakEchelon UseErrorPropagation; do
+   patch -p1 -i ../$_patch.patch
+  done
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  export CFLAGS1="$CFLAGS -std=gnu99 -O -Wall -fPIC"
+  export ZZZ=0
+  touch Makefile.conf
+# make
+  make tmp/libmtx.a
+}
+
+package() {
+  cd $pkgname-$pkgver
+  
+  mkdir -p "$pkgdir"/usr/{include,lib,share/doc/meataxe}
+#  install -m755 bin/* "$pkgdir"/usr/bin
+  install -m644 tmp/libmtx.a "$pkgdir"/usr/lib
+  install -m644 src/meataxe.h "$pkgdir"/usr/include
+  install -m644 doc/* "$pkgdir"/usr/share/doc/meataxe
+}



More information about the arch-commits mailing list