diff options
author | wangjiezhe | 2016-05-02 21:58:57 +0800 |
---|---|---|
committer | wangjiezhe | 2016-05-02 21:58:57 +0800 |
commit | 298ed9c4adcce836ed595a11c74d03e58c358313 (patch) | |
tree | bf0ff015f841fe07563ec1a026e3a89a429dbc8d | |
download | aur-298ed9c4adcce836ed595a11c74d03e58c358313.tar.gz |
Initial commit
-rw-r--r-- | .SRCINFO | 20 | ||||
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | PKGBUILD | 58 | ||||
-rw-r--r-- | octave-bsltl.install | 17 |
4 files changed, 99 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..5078bf07798c --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,20 @@ +# Generated by mksrcinfo v8 +# Mon May 2 13:56:18 UTC 2016 +pkgbase = octave-bsltl + pkgdesc = The BSLTL package is a free collection of OCTAVE/MATLAB routines for working with the biospeckle laser technique. + pkgver = 1.0.0 + pkgrel = 1 + url = http://octave.sourceforge.net/bsltl/ + install = octave-bsltl.install + arch = any + groups = octave-forge + license = GPL3 + depends = octave>=3.8.0 + depends = octave-control>=2.2.3 + depends = octave-signal>=1.2.2 + noextract = bsltl-1.0.0.tar.gz + source = http://downloads.sourceforge.net/octave/bsltl-1.0.0.tar.gz + md5sums = 64a11f29b977f2f8ac7bfb5bc81f7153 + +pkgname = octave-bsltl + diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..ef46e7bf4e8c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.tar.gz +*.tar.xz +/src/ +/pkg/ diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..b906a29bd9c7 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,58 @@ +# +# Maintainer: Clemens Buchacher <drizzd@aon.at> +# +# 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=bsltl +pkgname=octave-$_pack +pkgver=1.0.0 +pkgrel=1 +pkgdesc="The BSLTL package is a free collection of OCTAVE/MATLAB routines for working with the biospeckle laser technique." +arch=(any) +url="http://octave.sourceforge.net/$_pack/" +license=('GPL3') +groups=('octave-forge') +depends=('octave>=3.8.0' 'octave-control>=2.2.3' 'octave-signal>=1.2.2') +makedepends=() +optdepends=() +backup=() +options=() +install=$pkgname.install +_archive=$_pack-$pkgver.tar.gz +source=("http://downloads.sourceforge.net/octave/$_archive") +noextract=("$_archive") +md5sums=('64a11f29b977f2f8ac7bfb5bc81f7153') + +_octave_run() { + octave --no-history --no-init-file --no-window-system -q -f --eval "$*" +} + +_install_dir() { + src=$1 + dst=$2 + mkdir -p "$(dirname "$dst")" + cp -rT "$src" "$dst" +} + +build() { + _prefix="$srcdir"/install_prefix + _archprefix="$srcdir"/install_archprefix + mkdir -p "$_prefix" "$_archprefix" + cd "$srcdir" + _octave_run "$(cat <<-EOF + pkg local_list octave_packages; + pkg prefix $_prefix $_archprefix; + pkg install -verbose -nodeps $_archive; + EOF + )" +} + +package() { + prefix=$pkgdir/usr/share/octave/packages + archprefix=$pkgdir/usr/lib/octave/packages + _install_dir "$srcdir"/install_prefix "$prefix" + _install_dir "$srcdir"/install_archprefix "$archprefix" +} diff --git a/octave-bsltl.install b/octave-bsltl.install new file mode 100644 index 000000000000..3e037155f583 --- /dev/null +++ b/octave-bsltl.install @@ -0,0 +1,17 @@ +_pack=bsltl + +_octave_run() { + octave --no-history --no-init-file --no-window-system -q -f --eval "$*" +} + +post_install() { + _octave_run "pkg rebuild -global $_pack" +} + +post_upgrade() { + post_install +} + +post_remove() { + _octave_run "pkg rebuild -global" +} |