diff options
author | Marco Asa | 2023-08-03 21:17:58 +0200 |
---|---|---|
committer | Marco Asa | 2023-08-03 21:17:58 +0200 |
commit | 910ce6b5b9f83b655eeede7b275a0f69ceaee4e3 (patch) | |
tree | 7476578704086b70c405d5efe8a9f6eaffed9873 | |
parent | 3a1790a9df249d8eac8afaf107b8fad4dc007bb5 (diff) | |
download | aur-910ce6b5b9f83b655eeede7b275a0f69ceaee4e3.tar.gz |
applied patch from gudzpoz for libgslclas.so.0 missing library
-rw-r--r-- | PKGBUILD | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -1,12 +1,13 @@ # Contributor: Marco Asa <marcoasa90 (at) gmail.com> -pkgname=alphaplot-bin +pkgname=alphaplot-bin pkgver=1.02 -pkgrel=1 +pkgrel=2 pkgdesc="Application for Scientific Data Analysis and Visualization, fork of SciDavis / QtiPlot" arch=('x86_64') -url="url = http://alphaplot.sourceforge.net/" +url=" http://alphaplot.sourceforge.net/" license=('GPL') +makedepends=('patchelf') depends=('glu' 'gsl' 'mesa' 'shared-mime-info' 'hicolor-icon-theme' 'qt5-svg' 'qt5-xmlpatterns' 'qt5-script' 'qt5-datavis3d') source=(https://sourceforge.net/projects/alphaplot/files/1.02/alphaplot_v1.02_x64_gcc.pkg.tar.xz) sha256sums=('025e4e3a0975bfb67272f3a374d1a3fbd2a445bfb3307a9ce6f957dc992b0205') @@ -14,5 +15,8 @@ sha256sums=('025e4e3a0975bfb67272f3a374d1a3fbd2a445bfb3307a9ce6f957dc992b0205') package() { tar -xvf alphaplot_v1.02_x64_gcc.pkg.tar.xz cp -r $srcdir/usr $pkgdir + patchelf --replace-needed libgslcblas.so.0 libgslcblas.so "$pkgdir/usr/bin/alphaplot" + find "$pkgdir/usr/lib/AlphaPlot/plugins" -type f -exec patchelf --replace-needed libgslcblas.so.0 libgslcblas.so {} \; + } |