summaryrefslogtreecommitdiffstats
path: root/tools/build-pkg.lua
Commit message (Collapse)AuthorAgeFilesLines
...
* build-pkg: build for amd64 onlyBoris Nagaev2015-08-111-13/+10
| | | | | | | Packages containing native binaries (compiler, native libraries, yasm) are compatible only with build machine architecture. close #756
* build-pkg: take target common files to a packageBoris Nagaev2015-08-111-9/+96
| | | | | | | | | | | | | | | | | | | | | | | | | | There are documentation and other shared files installed, which we don't need [1]. Some packages install files to same paths. There is a list of all packages which overlap and shared files [2]. Create a list of packages which have common files across targets. Some of them are a part of compiler chain (gcc-*), some are built natively intentionally: * gcc-isl * gcc-mpc * gcc-gmp * gcc-mpfr * gcc * yasm * ncurses * pkgconf [1] https://lists.nongnu.org/archive/html/mingw-cross-env-list/2015-06/msg00011.html [2] https://gist.github.com/starius/59625347cd68a21d9cc9 close #763 close #757
* build-pkg: fix a pattern in blacklistBoris Nagaev2015-08-111-1/+1
| | | | "-" should be %-escaped in Lua patterns.
* build-pkg: add target name to broken packages logBoris Nagaev2015-07-101-2/+6
|
* build-pkg: blacklist some file pathsBoris Nagaev2015-07-101-1/+17
| | | | | | | | | | | | | | | | * usr/share/ (doc, gcc-5.1.0, info, man) * usr/installed/check-requirements There are documentation and other shared files installed, which we don't need [1]. This commit doesn't cover all doc files. More files can be found by "find usr -name doc". Some packages install files to same paths. There is a list of all packages which overlap and shared files [2]. [1] https://lists.nongnu.org/archive/html/mingw-cross-env-list/2015-06/msg00011.html [2] https://gist.github.com/starius/59625347cd68a21d9cc9
* packages built by build-pkg.lua work on WheezyBoris Nagaev2015-07-101-7/+11
| | | | | | | | | | | | | | | | | | | After commit b14c1a3a9c25cf99c004b42e1ed , packages could not be installed on Debian <= Wheezy, because it lacks package libtool-bin. So package mxe-requirements should depend on libtool-bin only for Debian >= Jessie. This commit changes the function that builds packages mxe-requirements. Now it makes 4 .deb files: wheezy/ mxe-requirements_2.23_i386.deb mxe-requirements_2.23_amd64.deb jessie/ mxe-requirements_2.23_i386.deb mxe-requirements_2.23_amd64.deb see #754
* build-pkg.lua: fix too long lines of codeBoris Nagaev2015-07-101-4/+5
|
* build-pkg: Add libtool-bin and p7zip-full as depsTimothy Gu2015-07-061-2/+4
| | | | Fixes #753. Fixes #754.
* build-pkg: remove old name "mxedeb"Boris Nagaev2015-06-281-4/+4
| | | | | Fix description of the script: replace "DEB packages" with "binary packages".
* add tool build-pkg.luaBoris Nagaev2015-06-231-0/+356
This tool builds all packages for all targets and generates *.tar.xz and *.deb files. The latter ones can be uploaded to APT repository and installed to Debian machines. build-pkg.lua was previously known as mxedeb.lua See also: http://mxe.redjohn.tk/ https://github.com/starius/mxedeb https://lists.nongnu.org/archive/html/mingw-cross-env-list/2015-02/msg00010.html https://lists.nongnu.org/archive/html/mingw-cross-env-list/2015-03/msg00001.html