This bug has been there since this package was added, and while it builds flawlessly the installer
puts all files in root...
so heres the fix for the package builder script ->
package() {
cd $_realname
# in all this time this bug was still not squashed...
mkdir -p ${pkgdir}${MINGW_PREFIX}/{bin,include,lib}
make PREFIX="${pkgdir}${MINGW_PREFIX}" install
install -Dm644 LICENSE.md "${pkgdir}${MINGW_PREFIX}/share/licenses/${_realname}/LICENSE"
}
This bug has been there since this package was added, and while it builds flawlessly the installer puts all files in root...
so heres the fix for the package builder script ->