# # Standard wget downloader software from Gnu. S.Youssef, Oct. 2002. # description = 'GNU wget 0.1' # # accept as natively installed if anything called "wget" is in the path. # nativelyInstalled = {'inpath':['wget']} url = "http://www.gnu.org/software/wget/wget.html" download = {'*':'wget-1.8.2.tar.gz'} source = 'tarballs' install = {'*':['./configure --prefix=$PACMAN_INSTALLATION/wget-inst-1.8.2','make','make install']} paths = [['PATH','|$PACMAN_INSTALLATION/wget-inst-1.8.2/bin|']] demo = 'wget -help' uninstall = ['rm -r wget-inst-1.8.2']