From c90ed53b40a125b1dd016722a6afadfbeb6481cb Mon Sep 17 00:00:00 2001 From: Omar Vega Ramos Date: Mon, 30 Nov 2015 19:13:32 -0500 Subject: octave-communications-1.2.1-1: updating version --- pcr/octave-communications/PKGBUILD | 34 ++++++++++++++++------ .../octave-communications.install | 13 ++------- 2 files changed, 28 insertions(+), 19 deletions(-) diff --git a/pcr/octave-communications/PKGBUILD b/pcr/octave-communications/PKGBUILD index 31f11bb8c..7fe453892 100644 --- a/pcr/octave-communications/PKGBUILD +++ b/pcr/octave-communications/PKGBUILD @@ -1,6 +1,6 @@ # -# Maintainer : Aurélien DESBRIÈRES -# Contributor : Clemens Buchacher +# Maintainer (Arch): Clemens Buchacher +# Maintainer: Omar Vega Ramos # # You can use the newpkg script from # https://github.com/drizzd/octave-forge-archlinux to automatically generate @@ -9,7 +9,7 @@ _pack=communications pkgname=octave-$_pack -pkgver=1.2.0 +pkgver=1.2.1 pkgrel=1 pkgdesc="Digital Communications, Error Correcting Codes (Channel Code), Source Code functions, Modulation and Galois Fields" arch=(any) @@ -25,15 +25,31 @@ install=$pkgname.install _archive=$_pack-$pkgver.tar.gz source=("http://downloads.sourceforge.net/octave/$_archive") noextract=("$_archive") +md5sums=('cf5ad84af0c3221199b2e04109946562') + +_install_dir() { + src=$1 + dst=$2 + mkdir -p "$(dirname "$dst")" + cp -rT "$src" "$dst" +} build() { - cd "$srcdir" - mkdir -p builddir - octave -q -f --eval "pkg build -verbose -nodeps builddir $_archive" + _prefix="$srcdir"/install_prefix + _archprefix="$srcdir"/install_archprefix + mkdir -p "$_prefix" "$_archprefix" + cd "$srcdir" + octave -q -f --eval "$(cat <<-EOF + pkg local_list octave_packages; + pkg prefix $_prefix $_archprefix; + pkg install -verbose -nodeps $_archive; + EOF + )" } 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" + 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/pcr/octave-communications/octave-communications.install b/pcr/octave-communications/octave-communications.install index 77b123c4e..dd537e7ef 100644 --- a/pcr/octave-communications/octave-communications.install +++ b/pcr/octave-communications/octave-communications.install @@ -1,20 +1,13 @@ _pack=communications -_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" + octave -q -f --eval "pkg rebuild -global $_pack" } -## arg 1: the new package version -## arg 2: the old package version post_upgrade() { - post_remove - post_install + post_install } -## arg 1: the old package version post_remove() { - octave -q -f --eval "pkg prefix $prefix $libdir; pkg uninstall $_pack; pkg rebuild -global" + octave -q -f --eval "pkg rebuild -global" } -- cgit v1.2.3-2-g168b