wok-next view R/receipt @ rev 19988

Add qt5 - now it's look good enough
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Oct 20 03:29:40 2017 +0300 (2017-10-20)
parents 11b5e93cb5f2
children 28ea851f8c06
line source
1 # SliTaz package receipt.
3 PACKAGE="R"
4 VERSION="3.1.1"
5 CATEGORY="office"
6 SHORT_DESC="Free software environment for statistical computing and graphics."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.r-project.org/"
11 WGET_URL="http://cran.r-project.org/src/base/R-3/$TARBALL"
13 DEPENDS="libgfortran readline bzlib libgomp midori epdfview pcre"
14 BUILD_DEPENDS="gfortran readline-dev bzip2-dev pcre-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 export R_BROWSER="midori"
20 export R_PDFVIEWER="epdfview"
21 unset DESTDIR
23 ./configure \
24 --enable-R-shlib \
25 --with-system-zlib \
26 --with-system-bzlib \
27 --with-system-pcre \
28 $CONFIGURE_ARGS &&
29 make && make DESTDIR=$install install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/lib $fs/usr
38 sed -i s'/bash/sh/' $fs/usr/bin/R
39 sed -i s'/bash/sh/' $fs/usr/lib/R/bin/R
40 sed -i s'/bash/sh/' $fs/usr/lib/R/bin/pager
41 }