10000 GitHub - micheltallon/ylib: YLib (Yorick Library) is a collection of useful interpreted functions for Yorick
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
forked from emmt/ylib

YLib (Yorick Library) is a collection of useful interpreted functions for Yorick

License

Notifications You must be signed in to change notification settings

micheltallon/ylib

 
 

Repository files navigation

YLib

YLib (Yorick Library) is a collection of useful interpreted functions for Yorick.

Contents

Amon others:

  • img.i - routines for manipulation image.
  • utils.i - various utilities.
  • plot.i - plotting utilities.

Installation

Installation with EasyYorick

Installation of YLib by EasyYorick is fully supported. Assuming you have installed EasyYorick, you just have to execute:

ypkg install yorick ylib

which should install Yorick (if not yet installed) and YLib.

To upgrade to the last master version:

ypkg upgrade ylib

Manual installation

  1. You must have Yorick installed on your machine.

  2. Unpack the software code somewhere or clone the Git repository:

    git clone https://github.com/emmt/ylib.git ylib

    if you want/prefer to use HTTPS, or:

    git clone git@github.com:emmt/ylib.git ylib

    if you want/prefer to use SSH. Any of these commands creates a local GIT repository named ylib.

  3. Configure for compilation. There are two possibilities:

    • For an in-place build, go to the source directory, say $SRC_DIR, of the plug-in code and run the configuration script:

      cd $SRC_DIR
      ./configure

      To see the configuration options, type:

      ./configure --help
    • For an out-of-place build, create a dedicated build directory, say $BUILD_DIR, go to the build directory and run the configuration script:

      mkdir -p $BUILD_DIR
      cd $BUILD_DIR
      $SRC_DIR/configure

      where $SRC_DIR is the path to the source directory of the plug-in code. To see the configuration options, type:

      $SRC_DIR/configure --help
  4. Build YLib:

    make clean
    make
  5. Install YLib (you must have write access granted to Yorick directories):

    make install

About

YLib (Yorick Library) is a collection of useful interpreted functions for Yorick

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Makefile 45.0%
  • Shell 44.3%
  • Emacs Lisp 5.4%
  • sed 5.3%
0