File: link-recommended

package info (click to toggle)
r-base 2.1.0-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 43,944 kB
  • ctags: 23,283
  • sloc: ansic: 200,913; fortran: 68,557; sh: 12,127; perl: 8,510; makefile: 5,810; tcl: 2,953; yacc: 2,077; java: 455; asm: 268; sed: 16
file content (21 lines) | stat: -rwxr-xr-x 643 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/sh
#
# ${RHOME}/tools/link-recommended

## This is like rsync-recommended but without the rsync.  Before running
## it you are assumed to have already fetched the packages by (say) FTP.

TOOLS_DIR=`echo ${0} | sed 's%/[^/][^/]*$%%'`
(cd "${TOOLS_DIR}"/..
  PKGS=`grep '^R_PKGS_RECOMMENDED_SOURCES *=' share/make/vars.mk | \
    sed 's/.*=//'`
  cd src/library/Recommended

  ## Link all each package to a simplified name so that Make has an
  ## easier time.  Notice that as far as Make is concerned, the symlinks
  ## have the same timestamp as the file they point to.

  for i in ${PKGS} ; do
    ln -sf $i*.tar.gz ${i}.tgz
  done
)