[arch-commits] Commit in octave/repos (6 files)

Bartłomiej Piotrowski bpiotrowski at nymeria.archlinux.org
Sun Mar 30 19:17:50 UTC 2014


    Date: Sunday, March 30, 2014 @ 21:17:49
  Author: bpiotrowski
Revision: 209255

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

Added:
  octave/repos/testing-i686/
  octave/repos/testing-i686/PKGBUILD
    (from rev 209254, octave/trunk/PKGBUILD)
  octave/repos/testing-i686/octave.install
    (from rev 209254, octave/trunk/octave.install)
  octave/repos/testing-x86_64/
  octave/repos/testing-x86_64/PKGBUILD
    (from rev 209254, octave/trunk/PKGBUILD)
  octave/repos/testing-x86_64/octave.install
    (from rev 209254, octave/trunk/octave.install)

-------------------------------+
 testing-i686/PKGBUILD         |   45 ++++++++++++++++++++++++++++++++++++++++
 testing-i686/octave.install   |   18 ++++++++++++++++
 testing-x86_64/PKGBUILD       |   45 ++++++++++++++++++++++++++++++++++++++++
 testing-x86_64/octave.install |   18 ++++++++++++++++
 4 files changed, 126 insertions(+)

Copied: octave/repos/testing-i686/PKGBUILD (from rev 209254, octave/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2014-03-30 19:17:49 UTC (rev 209255)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor : shining <shiningxc.at.gmail.com>
+# Contributor : cyberdune <cyberdune at gmail.com>
+
+pkgname=octave
+pkgver=3.8.1
+pkgrel=1
+pkgdesc="A high-level language, primarily intended for numerical computations."
+arch=('i686' 'x86_64')
+url="http://www.octave.org"
+license=('GPL')
+depends=('fftw' 'curl' 'graphicsmagick' 'glpk' 'hdf5' 'qhull' 'fltk' 'arpack' 'glu')
+makedepends=('gcc-fortran' 'texlive-core' 'suitesparse' 'texinfo' 'gnuplot' 'qscintilla')
+optdepends=('texinfo: for help-support in octave'
+            'gnuplot: alternative plotting'
+            'qscintilla: experimental gui')
+source=(ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2{,.sig})
+options=('!emptydirs')
+install=octave.install
+sha1sums=('2951aeafe58d562672feb80dd8c3cfe0643a5087'
+          'SKIP')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  autoreconf -vfi
+
+  ./configure --prefix=/usr --libexecdir=/usr/lib \
+  --enable-shared --disable-static \
+  --with-quantum-depth=16 \
+  --with-umfpack="-lumfpack -lsuitesparseconfig" # https://mailman.cae.wisc.edu/pipermail/help-octave/2012-September/053991.html
+
+  LANG=C make
+}
+
+package(){
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  # add octave library path to ld.so.conf.d
+  install -d "${pkgdir}/etc/ld.so.conf.d"
+  echo "/usr/lib/${pkgname}/${pkgver}" > "${pkgdir}/etc/ld.so.conf.d/${pkgname}.conf"
+}

Copied: octave/repos/testing-i686/octave.install (from rev 209254, octave/trunk/octave.install)
===================================================================
--- testing-i686/octave.install	                        (rev 0)
+++ testing-i686/octave.install	2014-03-30 19:17:49 UTC (rev 209255)
@@ -0,0 +1,18 @@
+info_dir=/usr/share/info
+info_files=(octave.info octave.info-1 octave.info-2 octave.info-3 octave.info-4 octave.info-5 octave.info-6 octave.info-7 octave.info-8)
+
+post_install() {
+  for f in ${info_files[@]}; do
+    install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+	post_install
+}
+
+pre_remove() {
+  for f in ${info_files[@]}; do
+    install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}

Copied: octave/repos/testing-x86_64/PKGBUILD (from rev 209254, octave/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2014-03-30 19:17:49 UTC (rev 209255)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor : shining <shiningxc.at.gmail.com>
+# Contributor : cyberdune <cyberdune at gmail.com>
+
+pkgname=octave
+pkgver=3.8.1
+pkgrel=1
+pkgdesc="A high-level language, primarily intended for numerical computations."
+arch=('i686' 'x86_64')
+url="http://www.octave.org"
+license=('GPL')
+depends=('fftw' 'curl' 'graphicsmagick' 'glpk' 'hdf5' 'qhull' 'fltk' 'arpack' 'glu')
+makedepends=('gcc-fortran' 'texlive-core' 'suitesparse' 'texinfo' 'gnuplot' 'qscintilla')
+optdepends=('texinfo: for help-support in octave'
+            'gnuplot: alternative plotting'
+            'qscintilla: experimental gui')
+source=(ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2{,.sig})
+options=('!emptydirs')
+install=octave.install
+sha1sums=('2951aeafe58d562672feb80dd8c3cfe0643a5087'
+          'SKIP')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  autoreconf -vfi
+
+  ./configure --prefix=/usr --libexecdir=/usr/lib \
+  --enable-shared --disable-static \
+  --with-quantum-depth=16 \
+  --with-umfpack="-lumfpack -lsuitesparseconfig" # https://mailman.cae.wisc.edu/pipermail/help-octave/2012-September/053991.html
+
+  LANG=C make
+}
+
+package(){
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  # add octave library path to ld.so.conf.d
+  install -d "${pkgdir}/etc/ld.so.conf.d"
+  echo "/usr/lib/${pkgname}/${pkgver}" > "${pkgdir}/etc/ld.so.conf.d/${pkgname}.conf"
+}

Copied: octave/repos/testing-x86_64/octave.install (from rev 209254, octave/trunk/octave.install)
===================================================================
--- testing-x86_64/octave.install	                        (rev 0)
+++ testing-x86_64/octave.install	2014-03-30 19:17:49 UTC (rev 209255)
@@ -0,0 +1,18 @@
+info_dir=/usr/share/info
+info_files=(octave.info octave.info-1 octave.info-2 octave.info-3 octave.info-4 octave.info-5 octave.info-6 octave.info-7 octave.info-8)
+
+post_install() {
+  for f in ${info_files[@]}; do
+    install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+	post_install
+}
+
+pre_remove() {
+  for f in ${info_files[@]}; do
+    install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}




More information about the arch-commits mailing list