-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #363 from MSoegtropIMC/windows_make
Windows: added local opam package for gnu make 4.4.1 (Windows only)
- Loading branch information
Showing
1 changed file
with
21 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,21 @@ | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
authors: ["Richard Stallman" "Roland McGrath" "Paul D. Smith"] | ||
homepage: "https://savannah.gnu.org/projects/make/" | ||
bug-reports: "https://savannah.gnu.org/bugs/?group=make" | ||
dev-repo: "git+https://git.savannah.gnu.org/git/make.git" | ||
license: "GPL3+" | ||
build: [ | ||
[ "cp" "/usr/bin/%{arch}%-w64-mingw32-gcc.exe" "./gcc.exe" ] | ||
[ "./build_w32.bat" "gcc" ] | ||
] | ||
install: [ "cp" "GccRel/gnumake.exe" "%{bin}%/gnumake.exe"] | ||
depends: [ | ||
"conf-gcc" {build} | ||
] | ||
synopsis: "GNU Make is a tool which controls the generation of executables and other non-source files of a program from the program's source files" | ||
url { | ||
src: "https://ftp.gnu.org/gnu/make/make-4.4.1.tar.gz" | ||
checksum: "sha512=145260cbd6a8226cef3dfef0c8baba31847beaebc7e6b65d39d02715fd4f4cab9b139b6c3772e550088d4f9ae80c6d3ed20b9a7664c693644dfb96b4cb60e67c" | ||
} | ||
available: os = "win32" & os-distribution = "cygwinports" |