diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-11-14 13:57:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-14 13:57:37 -0500 |
commit | d47f07051f6d05af894b6799e1cee6c03b3351e9 (patch) | |
tree | d86653a55c0009c25d6642c5fcbaef9ff8ad2b7a /readline/meta.yaml | |
parent | 6e986420619053d3154df7ab212ce7788870b73a (diff) | |
parent | 11f15b47d6eb5db9ae52a44b8ade3d0bf9ea2dae (diff) | |
download | astroconda-dev-d47f07051f6d05af894b6799e1cee6c03b3351e9.tar.gz |
Merge pull request #9 from jhunkeler/add-readline
Add readline (workaround)
Diffstat (limited to 'readline/meta.yaml')
-rw-r--r-- | readline/meta.yaml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/readline/meta.yaml b/readline/meta.yaml new file mode 100644 index 0000000..f3f99c2 --- /dev/null +++ b/readline/meta.yaml @@ -0,0 +1,29 @@ +package: + name: readline + version: 6.2 + +source: + fn: readline-6.2.tar.gz + url: http://ftp.gnu.org/gnu/readline/readline-6.2.tar.gz + md5: 67948acb2ca081f23359d0256e9a271c + patches: + - tpn.patch + - ncurses.patch + +build: + number: 3 + +about: + home: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html + license: GPL3 + license_file: COPYING + summary: Line-editing for programs with a command-line interface + description: | + The GNU Readline library provides a set of functions for use by + applications that allow users to edit command lines as they are typed in. + Both Emacs and vi editing modes are available. The Readline library + includes additional functions to maintain a list of previously-entered + command lines, to recall and perhaps reedit those lines, and perform + csh-like history expansion on previous commands. + doc_url: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html#Documentation + |