Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
msinttypes: From conda-forge
Browse files Browse the repository at this point in the history
  • Loading branch information
mingwandroid committed Nov 25, 2016
1 parent eda2cfd commit df4da9b
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
3 changes: 3 additions & 0 deletions msinttypes/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
mkdir %PREFIX%\include
copy *.h %LIBRARY_INC%\

24 changes: 24 additions & 0 deletions msinttypes/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{% set version = "r26" %}
package:
name: msinttypes
version: {{ version }}

source:
fn: msinttypes-{{ version }}.zip
url: https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/msinttypes/msinttypes-{{ version }}.zip
sha256: 6e66d88de18aac0775890e94aa621853aa1d572136e3783ce130510d8fb6a55d

build:
number: 2
skip: True # [not win]

about:
home: https://code.google.com/archive/p/msinttypes/
license: BSD-3-Clause
summary: 'ISO C9x compliant stdint.h and inttypes.h for Microsoft Visual Studio.'

extra:
recipe-maintainers:
- janschulz
- ocefpaf
- pelson
6 changes: 6 additions & 0 deletions msinttypes/run_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import os
import sys

inc = os.path.join(sys.prefix, 'Library', 'include')
assert os.path.isfile(os.path.join(inc, 'stdint.h'))
assert os.path.isfile(os.path.join(inc, 'inttypes.h'))

0 comments on commit df4da9b

Please sign in to comment.