annotate src/of-nurbs.mk @ 4258:a45374f7d9a3

Use 8.3 format for octave path * installer-files/octave-firsttime.vbs: convert OctavePath to shortpath * installer-files/octave.vbs: convert OctavePath to shortpath * installer-files/octave.bat: convert OCT_HOME to 8.3 path * tools/makeinst-script.sh.in: call pkg rbuild and fc_cache with 8.3 pathname
author John D
date Tue, 06 Dec 2016 02:27:58 -0500
parents e9bc89b98054
children 48ff10ecae2d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3899
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 # This file is part of MXE.
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 # See index.html for further information.
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 PKG := of-nurbs
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
4023
e9bc89b98054 of-nurbs: update to 1.3.10
John D
parents: 4007
diff changeset
6 $(PKG)_VERSION := 1.3.10
e9bc89b98054 of-nurbs: update to 1.3.10
John D
parents: 4007
diff changeset
7 $(PKG)_CHECKSUM := 92ae4351cbd61df0246822c5464968267712576e
3899
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8 $(PKG)_REMOTE_SUBDIR :=
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
9 $(PKG)_SUBDIR := nurbs
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
10 $(PKG)_FILE := nurbs-$($(PKG)_VERSION).tar.gz
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
11 $(PKG)_URL := '$(OCTAVE_FORGE_BASE_URL)/$($(PKG)_FILE)/download'
4007
8fc810f8ff93 conditionally depend on mpfr and libgomp
John W. Eaton <jwe@octave.org>
parents: 3903
diff changeset
12 $(PKG)_DEPS :=
8fc810f8ff93 conditionally depend on mpfr and libgomp
John W. Eaton <jwe@octave.org>
parents: 3903
diff changeset
13 ifeq ($(USE_SYSTEM_GCC),no)
8fc810f8ff93 conditionally depend on mpfr and libgomp
John W. Eaton <jwe@octave.org>
parents: 3903
diff changeset
14 $(PKG)_DEPS += libgomp
8fc810f8ff93 conditionally depend on mpfr and libgomp
John W. Eaton <jwe@octave.org>
parents: 3903
diff changeset
15 endif
3899
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
16
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
17 define $(PKG)_UPDATE
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
18 $(WGET) -q -O- 'http://$(SOURCEFORGE_MIRROR)/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/' | \
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
19 $(SED) -n 's,.*title="nurbs-\([0-9][^"]*\).tar.gz".*,\1,p' | \
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
20 head -1
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
21 endef
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
22
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
23 define $(PKG)_BUILD
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
24 $(OCTAVE_FORGE_PKG_BUILD)
1778bfc775d2 Add nurbs package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
25 endef