Commit 78fb2d96c67719ce4056c7b92dbd00ceed3a3e91

Authored by Perry Werneck
1 parent e4601a9f
Exists in develop

Debugging win32 action.

.github/workflows/msys2.yml
... ... @@ -29,6 +29,9 @@ jobs:
29 29 latest: true
30 30 fileName: "mingw-w64-x86_64-libv3270-5.4-0-x86_64.pkg.tar.zst"
31 31 - name: CI-Build
32   - run: ./win/ci-build.sh
  32 + run: |
  33 + pacman -U --noconfirm *.pkg.tar.zst
  34 + dos2unix PKGBUILD.mingw
  35 + makepkg BUILDDIR=/tmp/pkg -p PKGBUILD.mingw
33 36  
34 37  
... ...
PKGBUILD.mingw
... ... @@ -60,3 +60,4 @@ package() {
60 60 "${startdir}/LICENSE" \
61 61 "${pkgdir}${MINGW_PREFIX}/share/licenses/${_realname}/LICENSE"
62 62 }
  63 +
... ...
autogen.sh
... ... @@ -49,7 +49,7 @@ autopoint
49 49  
50 50 cd ${builddir}
51 51  
52   -test -n "$NOCONFIGURE" || "./configure" "$@"
  52 +test -n "$NOCONFIGURE" || "$srcdir/configure" --srcdir=${srcdir} $@
53 53  
54 54  
55 55  
... ...