source: gs2-extensions/ocr/trunk/packages/cmdline/CASCADE-MAKE/NUMPY.sh@ 30198

Last change on this file since 30198 was 30198, checked in by davidb, 9 years ago

Additional packages thanks to Zach's hard work improving OCR

  • Property svn:executable set to *
File size: 609 bytes
RevLine 
[30198]1#!/bin/bash
2
3package=numpy
4version=-1.9.2
5
6progname=$0
7
8source ../../bin/script/test-setup.bash
9source ../../lib/cascade-lib.bash
10
11prefix=$GEXTOCR_INSTALLED/cmdline
12
13opt_run_untar $force_untar $auto_untar $package $version
14
15opt_run_setuppy $install $package $version "install --prefix $prefix --record installed_files.txt"
16
17if [ $clean = "1" ] || [ $distclean = "1" ] ; then
18 ( cd $package$version ; \
19 if [ -f installed_files.txt ] ; then \
20 /bin/rm -rf $(cat installed_files.txt) ; \
21 /bin/rm -rf installed_files.txt ; \
22 fi );
23fi
24
25opt_run_tarclean $tarclean $package $version
Note: See TracBrowser for help on using the repository browser.