summaryrefslogtreecommitdiffstats
path: root/src/qwt.mk
diff options
context:
space:
mode:
authorLuis Saavedra <luis94855510@gmail.com>2012-05-17 20:44:26 (GMT)
committerLuis Saavedra <luis94855510@gmail.com>2012-05-17 20:44:26 (GMT)
commita1e4b4cc30d4ab8b0391ec31306cb23348b3b40d (patch)
tree87214e75c216e23918446d6a8ccc785140953fa4 /src/qwt.mk
parent19b63370896f99b962cc61a3a0f8572590ad1d37 (diff)
downloadmxe-a1e4b4cc30d4ab8b0391ec31306cb23348b3b40d.zip
mxe-a1e4b4cc30d4ab8b0391ec31306cb23348b3b40d.tar.gz
mxe-a1e4b4cc30d4ab8b0391ec31306cb23348b3b40d.tar.bz2
new package: qwt
this package was stolen from muellni fork...
Diffstat (limited to 'src/qwt.mk')
-rw-r--r--src/qwt.mk30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/qwt.mk b/src/qwt.mk
new file mode 100644
index 0000000..3d0eb2a
--- /dev/null
+++ b/src/qwt.mk
@@ -0,0 +1,30 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+# Qwt - Qt widgets for technical applications
+PKG := qwt
+$(PKG)_CHECKSUM := 7ea84ee47339809c671a456b5363d941c45aea92
+$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
+$(PKG)_FILE := $($(PKG)_SUBDIR).zip
+$(PKG)_WEBSITE := http://qwt.sourceforge.net/
+$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
+$(PKG)_DEPS := gcc qt
+
+define $(PKG)_UPDATE
+ $(WGET) -q -O- 'http://sourceforge.net/projects/qwt/files/qwt/' | \
+ $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \
+ head -1
+endef
+
+define $(PKG)_BUILD
+ # build
+ cd '$(1)/src' && $(PREFIX)/bin/$(TARGET)-qmake
+ $(MAKE) -C '$(1)/src' -f 'Makefile.Release' -j '$(JOBS)' install
+
+ #build sinusplot example to test linkage
+ cd '$(1)/examples/sinusplot' && $(PREFIX)/bin/$(TARGET)-qmake
+ $(MAKE) -C '$(1)/examples/sinusplot' -f 'Makefile.Release' -j '$(JOBS)'
+
+ # install
+ $(INSTALL) -m755 '$(1)/examples/bin/sinusplot.exe' '$(PREFIX)/$(TARGET)/bin/test-qwt.exe'
+endef