mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
gri: fix dependencies and license identifier
This commit is contained in:
parent
ffc555e881
commit
9d2608a59b
1 changed files with 6 additions and 6 deletions
|
@ -8,9 +8,9 @@ pkgver=2.12.27
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="A script-based language for scientific graphics programming"
|
pkgdesc="A script-based language for scientific graphics programming"
|
||||||
arch=('i686' 'x86_64')
|
arch=('i686' 'x86_64')
|
||||||
license=('GPL')
|
license=('GPL-3.0-or-later')
|
||||||
url="http://gri.sourceforge.net/"
|
url="http://gri.sourceforge.net/"
|
||||||
depends=('perl' 'netcdf')
|
depends=('perl' 'glibc' 'readline' 'gcc-libs' 'netcdf')
|
||||||
makedepends=('ghostscript' 'netcdf' 'imagemagick' 'texlive-core' 'perl-perl4-corelibs' 'git')
|
makedepends=('ghostscript' 'netcdf' 'imagemagick' 'texlive-core' 'perl-perl4-corelibs' 'git')
|
||||||
source=('gri::git+https://github.com/dankelley/gri.git')
|
source=('gri::git+https://github.com/dankelley/gri.git')
|
||||||
md5sums=('SKIP')
|
md5sums=('SKIP')
|
||||||
|
@ -23,19 +23,19 @@ pkgver() {
|
||||||
}
|
}
|
||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
cd $pkgname
|
cd "$pkgname"
|
||||||
aclocal
|
aclocal
|
||||||
autoconf
|
autoconf
|
||||||
automake --add-missing
|
automake --add-missing
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd $pkgname
|
cd "$pkgname"
|
||||||
CXXFLAGS+=" -fpermissive" ./configure --prefix=/usr
|
CXXFLAGS+=" -fpermissive" ./configure --prefix=/usr
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd $pkgname
|
cd "$pkgname"
|
||||||
make DESTDIR=$pkgdir install
|
make DESTDIR="$pkgdir" install
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue