diff options
-rwxr-xr-x | init | 5 | ||||
-rw-r--r-- | meta.lua | 8 |
2 files changed, 11 insertions, 2 deletions
@@ -1 +1,6 @@ | |||
1 | #!/bin/sh -ex | 1 | #!/bin/sh -ex |
2 | |||
3 | cd dlfcn-win32 | ||
4 | ./configure | ||
5 | make | ||
6 | cp libdl.a /root | ||
@@ -1,6 +1,10 @@ | |||
1 | return { | 1 | return { |
2 | ["dlfcn-win32"] = { | 2 | ["dlfcn-win32"] = { |
3 | requires = {}, | 3 | requires = { |
4 | produces = {}, | 4 | {"git","dlfcn-win32"} |
5 | }, | ||
6 | produces = { | ||
7 | ["libdl.a"] = true | ||
8 | }, | ||
5 | } | 9 | } |
6 | } | 10 | } |