This repository has been archived by the owner on Sep 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eda2cfd
commit df4da9b
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
mkdir %PREFIX%\include | ||
copy *.h %LIBRARY_INC%\ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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')) |