annotate src/qwtplot3d.mk @ 2353:99516e73b368

Move doc/index.html -> index.html
author Volker Grabsch <vog@notjusthosting.com>
date Thu, 29 Mar 2012 12:14:15 +0200
parents f48c5b085a38
children 3c5c44971ce1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2044
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
2024
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
3
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
4 PKG := qwtplot3d
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
5 $(PKG)_IGNORE :=
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
6 $(PKG)_CHECKSUM := 4463fafb8420a91825e165da7a296aaabd70abea
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
7 $(PKG)_SUBDIR := $(PKG)
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
8 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tgz
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
9 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
10 $(PKG)_DEPS := gcc qt zlib
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
11
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
12 define $(PKG)_UPDATE
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
13 wget -q -O- 'http://sourceforge.net/projects/$(PKG)/files/$(PKG)/' | \
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
14 $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
15 head -1
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
16 endef
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
17
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
18
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
19 define $(PKG)_BUILD
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
20 cd '$(1)' && '$(PREFIX)/bin/$(TARGET)-qmake'
2044
d82c8cc0bfac package qwtplot3d: use $(MAKE) variable
Tony Theodore <tonyt@logyst.com>
parents: 2024
diff changeset
21 $(MAKE) -C '$(1)' -j '$(JOBS)'
2024
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
22 $(INSTALL) -d '$(PREFIX)/$(TARGET)/lib'
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
23 $(INSTALL) -m644 '$(1)/lib/libqwtplot3d.a' '$(PREFIX)/$(TARGET)/lib/'
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
24 $(INSTALL) -d '$(PREFIX)/$(TARGET)/include'
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
25 $(INSTALL) -d '$(PREFIX)/$(TARGET)/include/qwtplot3d'
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
26 $(INSTALL) -m644 '$(1)/include'/*.h '$(PREFIX)/$(TARGET)/include/qwtplot3d/'
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
27 endef
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
28