summaryrefslogtreecommitdiff
path: root/pcr/octave-control
diff options
context:
space:
mode:
authorAurélien DESBRIÈRES <aurelien@hackers.camp>2014-10-08 17:54:27 +0200
committerAurélien DESBRIÈRES <aurelien@hackers.camp>2014-10-08 17:54:27 +0200
commit19767b96a2507bc812dbab9b217d2a738f387ca7 (patch)
treefca11b8e732aaa7cd7cdfdce6c32458f5d0325fe /pcr/octave-control
parentf85b4cf31b0e3947f29ce1e9b9140dc89e1e706d (diff)
octave-control Computer-Aided Control System Design (CACSD) Tools for GNU Octave,
ctabe, based on the proven SLICOT Library
Diffstat (limited to 'pcr/octave-control')
-rw-r--r--pcr/octave-control/PKGBUILD39
-rw-r--r--pcr/octave-control/octave-control.install20
2 files changed, 59 insertions, 0 deletions
diff --git a/pcr/octave-control/PKGBUILD b/pcr/octave-control/PKGBUILD
new file mode 100644
index 000000000..3db8a4593
--- /dev/null
+++ b/pcr/octave-control/PKGBUILD
@@ -0,0 +1,39 @@
+#
+# Contributor : Clemens Buchacher <drizzd@aon.at>
+# Maintainer : Aurélien DESBRIÈRES <aurelien@hackers.camp>
+#
+# You can use the newpkg script from
+# https://github.com/drizzd/octave-forge-archlinux to automatically generate
+# new octave-forge PKGBUILDs or update existing ones. Patches welcome.
+#
+
+_pack=control
+pkgname=octave-$_pack
+pkgver=2.6.4
+pkgrel=1
+pkgdesc="Computer-Aided Control System Design (CACSD) Tools for GNU Octave, based on the proven SLICOT Library"
+arch=(any)
+url="http://octave.sourceforge.net/$_pack/"
+license=('GPL3')
+groups=('octave-forge')
+depends=('octave>=3.6.0')
+makedepends=('gcc-fortran')
+optdepends=()
+backup=()
+options=('!makeflags')
+install=$pkgname.install
+_archive=$_pack-$pkgver.tar.gz
+source=("http://downloads.sourceforge.net/octave/$_archive")
+noextract=("$_archive")
+
+build() {
+ cd "$srcdir"
+ mkdir -p builddir
+ octave -q -f --eval "pkg build -verbose -nodeps builddir $_archive"
+}
+
+package() {
+ mkdir -p "$pkgdir/usr/share/octave/packages"
+ mkdir -p "$pkgdir/usr/lib/octave/packages"
+ cp "$srcdir/builddir/$_archive" "$pkgdir/usr/share/octave/$_pack.tar.gz"
+}
diff --git a/pcr/octave-control/octave-control.install b/pcr/octave-control/octave-control.install
new file mode 100644
index 000000000..2ddb42de9
--- /dev/null
+++ b/pcr/octave-control/octave-control.install
@@ -0,0 +1,20 @@
+_pack=control
+_prefix=/usr/share/octave/packages
+_libdir=/usr/lib/octave/packages
+
+## arg 1: the new package version
+post_install() {
+ octave -q -f --eval "pkg prefix $prefix $libdir; pkg install -verbose -global /usr/share/octave/$_pack.tar.gz"
+}
+
+## arg 1: the new package version
+## arg 2: the old package version
+post_upgrade() {
+ post_remove
+ post_install
+}
+
+## arg 1: the old package version
+post_remove() {
+ octave -q -f --eval "pkg prefix $prefix $libdir; pkg uninstall $_pack; pkg rebuild -global"
+}