Changeset 865f4f6 for common


Ignore:
Timestamp:
08/28/2006 06:32:08 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
e0a6b8a
Parents:
7cb8803
Message:

Downloading blfs-tool dependencies packages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • common/common-functions

    r7cb8803 r865f4f6  
    781781
    782782  cd $BUILDDIR/sources
    783 }
     783
     784  [[ "${BLFS_TOOL}" = "y" ]] && add_blfs_deps_urls
     785}
     786
     787#----------------------------# Hardcoded URLs and MD5.
     788add_blfs_deps_urls() {       # No easy way to extract it.
     789#----------------------------# Some FTP mirrors may not work
     790
     791  local BLFS_SERVER="${SERVER}/pub/blfs/conglomeration/"
     792
     793  if [[ "${DEP_LIBXML}" = "y" ]] ; then
     794    echo "ftp://xmlsoft.org/libxml2/libxml2-2.6.26.tar.gz ${BLFS_SERVER}libxml2/libxml2-2.6.26.tar.gz 2d8d3805041edab967368b497642f981" >> urls.lst
     795  fi
     796
     797  if [[ "${DEP_LIBXSLT}" = "y" ]] ; then
     798    echo "ftp://xmlsoft.org/libxslt/libxslt-1.1.17.tar.gz ${BLFS_SERVER}libxslt/libxslt-1.1.17.tar.gz fde6a7a93c0eb14cba628692fa3a1000" >> urls.lst
     799  fi
     800
     801  if [[ "${DEP_DBXSL}" = "y" ]] ; then
     802    echo "http://prdownloads.sourceforge.net/docbook/docbook-xsl-1.69.1.tar.bz2 ${BLFS_SERVER}docbook-xsl/docbook-xsl-1.69.1.tar.bz2 6ebd29a67f2dcc3f2220f475ee6f6552" >> urls.lst
     803  fi
     804
     805  if [[ "${DEP_LIKS}" = "y" ]] ; then
     806    echo "http://links.twibright.com/download/links-2.1pre21.tar.bz2 ${BLFS_SERVER}links/links-2.1pre21.tar.bz2 7687e2c32e337e11c6e9d8cd8c5202c9" >> urls.lst
     807  fi
     808
     809  if [[ "${DEP_SUDO}" = "y" ]] ; then
     810    echo "http://www.courtesan.com/sudo/dist/sudo-1.6.8p12.tar.gz ${BLFS_SERVER}sudo/sudo-1.6.8p12.tar.gz b29893c06192df6230dd5f340f3badf5" >> urls.lst
     811  fi
     812
     813  if [[ "${DEP_WGET}" = "y" ]] ; then
     814    echo "ftp://ftp.gnu.org/gnu/wget/wget-1.10.2.tar.gz ${BLFS_SERVER}wget/wget-1.10.2.tar.gz 795fefbb7099f93e2d346b026785c4b8" >> urls.lst
     815  fi
     816
     817  if [[ "${DEP_SVN}" = "y" ]] ; then
     818    echo "http://subversion.tigris.org/tarballs/subversion-1.3.1.tar.bz2 ${BLFS_SERVER}subversion/subversion-1.3.1.tar.bz2 07b95963968ae345541ca99d0e7bf082" >> urls.lst
     819  fi
     820
     821  if [[ "${DEP_GPM}" = "y" ]] ; then
     822    echo "ftp://arcana.linux.it/pub/gpm/gpm-1.20.1.tar.bz2 ${BLFS_SERVER}gpm/gpm-1.20.1.tar.bz2 2c63e827d755527950d9d13fe3d87692" >> urls.lst
     823  fi
     824
     825}
Note: See TracChangeset for help on using the changeset viewer.