blob: fb15dbc655343dc2c31bd197e53f8bae8459879a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := qtxlsxwriter
$(PKG)_WEBSITE := https://github.com/VSRonin/QtXlsxWriter/
$(PKG)_DESCR := QtXlsxWriter
$(PKG)_IGNORE :=
$(PKG)_VERSION := 5b685b5
$(PKG)_CHECKSUM := 5f0abd0a63d69b119bac8e4df98484476ec707f8d395ed9bd4c59c59e817b2f2
$(PKG)_GH_CONF := VSRonin/QtXlsxWriter/branches/master
$(PKG)_DEPS := cc qtbase
define $(PKG)_BUILD
cd '$(1)' && '$(PREFIX)/$(TARGET)/qt5/bin/qmake'
$(MAKE) -C '$(1)' -j '$(JOBS)'
$(MAKE) -C '$(1)' -j 1 install
endef
|