OLD | NEW |
(Empty) | |
| 1 #!/bin/sh |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. |
| 5 |
| 6 # This is here to record where we fetched the source packages. |
| 7 |
| 8 function getxfromy() { |
| 9 if [ \! -f "$1" ] ; then |
| 10 wget "$2"/"$1" |
| 11 fi |
| 12 } |
| 13 |
| 14 getxfromy util-macros-1.11.0.tar.gz \ |
| 15 http://xorg.freedesktop.org/releases/individual/util |
| 16 |
| 17 getxfromy xproto-7.0.20.tar.gz \ |
| 18 http://xorg.freedesktop.org/releases/individual/proto |
| 19 |
| 20 getxfromy dri2proto-2.3.tar.gz \ |
| 21 http://xorg.freedesktop.org/releases/individual/proto |
| 22 |
| 23 getxfromy xcb-proto-1.6.tar.gz \ |
| 24 http://xorg.freedesktop.org/releases/individual/xcb |
| 25 |
| 26 getxfromy libXfont-1.4.3.tar.gz \ |
| 27 http://xorg.freedesktop.org/releases/individual/lib |
| 28 |
| 29 getxfromy libxkbfile-1.0.7.tar.gz \ |
| 30 http://xorg.freedesktop.org/releases/individual/lib |
| 31 |
| 32 getxfromy xorg-server-1.9.3.901.tar.gz \ |
| 33 http://xorg.freedesktop.org/releases/individual/xserver |
| 34 |
| 35 getxfromy libdrm-2.4.26.tar.gz http://dri.freedesktop.org/libdrm |
| 36 getxfromy MesaGLUT-7.11.tar.gz ftp://ftp.freedesktop.org/pub/mesa/7.11 |
| 37 getxfromy MesaLib-7.11.tar.gz ftp://ftp.freedesktop.org/pub/mesa/7.11 |
| 38 getxfromy libXmu-1.0.5.tar.gz http://ftp.x.org/pub/individual/lib |
OLD | NEW |