source: sasview/build_tools/conda/macholib/meta.yaml @ 58f75b4

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 58f75b4 was 58f75b4, checked in by Peter Parker, 9 years ago

First pass of macholib, dependancy of py2app, using conda skeleton.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1package:
2  name: macholib
3  version: !!str 1.7
4
5source:
6  fn: macholib-1.7.tar.gz
7  url: https://pypi.python.org/packages/source/m/macholib/macholib-1.7.tar.gz
8  md5: cf03a55323d5b7ca59be530ba0b01032
9#  patches:
10   # List any patch files here
11   # - fix.patch
12
13build:
14  #preserve_egg_dir: True
15  entry_points:
16    # Put any entry points (scripts to be generated automatically) here. The
17    # syntax is module:function.  For example
18    #
19    # - macholib = macholib:main
20    #
21    # Would create an entry point called macholib that calls macholib.main()
22
23    - 
24    - macho_find = macholib.macho_find:main
25    - macho_standalone = macholib.macho_standalone:main
26    - macho_dump = macholib.macho_dump:main
27
28  # If this is a new build for the same version, increment the build
29  # number. If you do not include this key, it defaults to 0.
30  # number: 1
31
32requirements:
33  build:
34    - python
35    - setuptools
36    - altgraph >=0.12
37
38  run:
39    - python
40    - altgraph >=0.12
41
42test:
43  # Python imports
44  imports:
45    - macholib
46
47  commands:
48    # You can put test commands to be run here.  Use this to test that the
49    # entry points work.
50
51    -  --help
52    - macho_find --help
53    - macho_standalone --help
54    - macho_dump --help
55
56  # You can also put a file called run_test.py in the recipe that will be run
57  # at test time.
58
59  # requires:
60    # Put any additional test requirements here.  For example
61    # - nose
62
63about:
64  home: http://bitbucket.org/ronaldoussoren/macholib
65  license:  MIT License
66  summary: 'Mach-O header analysis and editing'
67
68# See
69# http://docs.continuum.io/conda/build.html for
70# more information about meta.yaml
Note: See TracBrowser for help on using the repository browser.