summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2016-07-27 06:25:27 (GMT)
committerGitHub <noreply@github.com>2016-07-27 06:25:27 (GMT)
commit526355876daf3e8aec44f038f3ee2579cacc4216 (patch)
treeb2d3e23de99ddb028ff57c068140d3b6252c1f46
parent66ae4fda57ae5b3b5e17baade7d92efdecc97064 (diff)
parentc4108bec320488865597bfb16efb8059ab308700 (diff)
downloadmxe-526355876daf3e8aec44f038f3ee2579cacc4216.zip
mxe-526355876daf3e8aec44f038f3ee2579cacc4216.tar.gz
mxe-526355876daf3e8aec44f038f3ee2579cacc4216.tar.bz2
Merge pull request #1456 from LuaAndC/master
add Issue and Pull Request templates
-rw-r--r--.github/ISSUE_TEMPLATE2
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md19
2 files changed, 21 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE b/.github/ISSUE_TEMPLATE
new file mode 100644
index 0000000..135b88a
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE
@@ -0,0 +1,2 @@
+If a package fails to build, upload the log file to
+https://gist.github.com/ and put the link here.
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000..e96eb7b
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,19 @@
+Please read http://mxe.cc/#creating-packages
+
+In particular, make sure that your build rules:
+
+ * install .pc file,
+ * install bin/test-pkg.exe compiled with flags by pkg-config,
+ * install .dll to bin/ and .a, .dll.a to lib/,
+ * use $(TARGET)-cmake instead of cmake,
+ * build in `$(BUILD_DIR)` instead of `$(SOURCE_DIR)`,
+ * do not run target executables with Wine,
+ * do not download anything while building,
+ * do not install documentation,
+ * do not install .exe files except test and build systems,
+
+and .patch files are generated by tools/patch-tool-mxe.
+
+If you add a package, you can use tool tools/skeleton.py.
+
+Thanks!