diff options
author | William Gathoye | 2022-03-10 14:29:42 +0100 |
---|---|---|
committer | William Gathoye | 2022-03-10 15:35:55 +0100 |
commit | 3e97567da7ec535af154195da1a1370912cfcd17 (patch) | |
tree | e5d3accde45b259a6a1fe75acb539ae11453e20f /PKGBUILD | |
parent | 4e1fc21c725562cf1f58af7db2d2e55cdd33492a (diff) | |
download | aur-3e97567da7ec535af154195da1a1370912cfcd17.tar.gz |
Specify which version is provided by the package
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -10,7 +10,13 @@ pkgdesc='Language and environment for statistical computing and graphicsi (versi arch=('x86_64') license=('GPL') url='https://www.r-project.org/' -provides=('r') +# The package providing the dependency will need to specify the version in its +# 'provides' array. It's not enough that the version of the package contains +# that information - since 'provides' are abstract features that do not +# necessarily map to packages neatly, the version provided must be specified +# there as well. +# src.: https://www.reddit.com/r/archlinux/comments/ebj3vo/x/fb61u92 +provides=('r=3.5.2') conflicts=('r') depends=( 'blas' 'lapack' 'bzip2' 'libpng' 'libjpeg' 'libtiff' 'ncurses' 'pcre' |