-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
an attempt to do what has to be done
- Loading branch information
Showing
28 changed files
with
173 additions
and
126 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
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,49 @@ | ||
MXE is licensed under the MIT Licence. The makefiles and utilities under | ||
`plugins/`, `src/`, and `tools/` all share this licence. | ||
|
||
> Copyright (c) 2007-2016 | ||
> | ||
> * Volker Diels-Grabsch | ||
> * Mark Brand | ||
> * Tony Theodore | ||
> * Martin Gerhardy | ||
> * Tiancheng "Timothy" Gu | ||
> * Boris Nagaev | ||
> * ... and many other [contributors][contributors] | ||
> | ||
> (contact via the [project mailing list][mailing-list] or | ||
> [issue tracker][issue-tracker]) | ||
> | ||
> Permission is hereby granted, free of charge, to any person obtaining a copy | ||
> of this software and associated documentation files (the "Software"), to deal | ||
> in the Software without restriction, including without limitation the rights | ||
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
> copies of the Software, and to permit persons to whom the Software is | ||
> furnished to do so, subject to the following conditions: | ||
> | ||
> The above copyright notice and this permission notice shall be included in all | ||
> copies or substantial portions of the Software. | ||
> | ||
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
> SOFTWARE. | ||
MXE distributes code from the following projects in the `ext/` directory: | ||
|
||
- [GNU config.guess][config.guess] [GPL3+ with Autoconf exception] | ||
- [GNU Make Standard Library][gmsl] [BSD 3-clause] | ||
|
||
The [packages][packages] downloaded by MXE (ending up in `pkg/`) each | ||
have their own licence(s). Please see the individual source trees and/or | ||
websites for further details. | ||
|
||
[contributors]: https://github.com/mxe/mxe/graphs/contributors | ||
[mailing-list]: https://lists.nongnu.org/mailman/listinfo/mingw-cross-env-list | ||
[issue-tracker]: https://github.com/mxe/mxe/issues | ||
[config.guess]: https://github.com/mxe/mxe/blob/master/ext/config.guess#L3-L27 | ||
[gmsl]: https://github.com/mxe/mxe/blob/master/ext/gmsl#L8-L40 | ||
[packages]: https://mxe.cc/#packages |
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,8 @@ | ||
You WILL need additional work to make this go. | ||
|
||
make MXE_PLUGIN_DIRS=plugins/apps/abiword abiword | ||
|
||
notes: | ||
|
||
* need to remove the manpages to get Enchant to build | ||
* need to remove the -Werror flags to get libgoffice to build |
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,14 @@ | ||
# This file is part of MXE. See LICENSE.md for licensing information. | ||
|
||
# TOOLKIT target for windows must be forced to GTK | ||
|
||
PKG := abiword | ||
$(PKG)_DEPS := cc libgsf libxslt enchant wv goffice | ||
|
||
define $(PKG)_BUILD | ||
cd '$(BUILD_DIR)' && '/media/modus/External2/abiword/abiword/configure' \ | ||
$(MXE_CONFIGURE_OPTS) \ | ||
--infodir='$(BUILD_DIR)/sink' | ||
$(MAKE) -C $(BUILD_DIR) -j '$(JOBS)' | ||
$(MAKE) -C $(BUILD_DIR) -j 1 install $(MXE_DISABLE_DOCS) | ||
endef |
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,14 @@ | ||
# This file is part of MXE. See LICENSE.md for licensing information. | ||
|
||
# need to remove the manpages to get this to work! | ||
|
||
PKG := enchant | ||
$(PKG)_DEPS := cc | ||
|
||
define $(PKG)_BUILD | ||
cd '$(BUILD_DIR)' && '/media/modus/External2/abiword/enchant/configure' \ | ||
$(MXE_CONFIGURE_OPTS) \ | ||
--infodir='$(BUILD_DIR)/sink' | ||
$(MAKE) -C $(BUILD_DIR) -j '$(JOBS)' | ||
$(MAKE) -C $(BUILD_DIR) -j 1 install $(MXE_DISABLE_DOCS) | ||
endef |
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,14 @@ | ||
# This file is part of MXE. See LICENSE.md for licensing information. | ||
|
||
# need to remove the -Werror flags to get this to work | ||
|
||
PKG := goffice | ||
$(PKG)_DEPS := cc libgsf librsvg | ||
|
||
define $(PKG)_BUILD | ||
cd '$(BUILD_DIR)' && PKG_CONFIG=/media/modus/External2/mxe/usr/bin/i686-w64-mingw32.static-pkg-config '/media/modus/External2/abiword/goffice-0.10.55/configure' \ | ||
$(MXE_CONFIGURE_OPTS) \ | ||
--infodir='$(BUILD_DIR)/sink' | ||
$(MAKE) -C $(BUILD_DIR) -j '$(JOBS)' | ||
$(MAKE) -C $(BUILD_DIR) -j 1 install $(MXE_DISABLE_DOCS) | ||
endef |
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,12 @@ | ||
# This file is part of MXE. See LICENSE.md for licensing information. | ||
|
||
PKG := wv | ||
$(PKG)_DEPS := cc libgsf | ||
|
||
define $(PKG)_BUILD | ||
cd '$(BUILD_DIR)' && PKG_CONFIG=/media/modus/External2/mxe/usr/bin/i686-w64-mingw32.static-pkg-config '/media/modus/External2/abiword/wv/configure' \ | ||
$(MXE_CONFIGURE_OPTS) \ | ||
--infodir='$(BUILD_DIR)/sink' | ||
$(MAKE) -C $(BUILD_DIR) -j '$(JOBS)' | ||
$(MAKE) -C $(BUILD_DIR) -j 1 install $(MXE_DISABLE_DOCS) | ||
endef |
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
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
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
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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
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
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
File renamed without changes.
Oops, something went wrong.