annotate src/epstool.mk @ 7207:9ed6500e56d3 default tip @

maint: Merge release to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 17 May 2024 20:16:41 +0200
parents d461d2670df7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3762
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 # This file is part of MXE.
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 # See index.html for further information.
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 PKG := epstool
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 $(PKG)_VERSION := 3.08
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
6 $(PKG)_CHECKSUM := dc495934f06d3ea8b3209e8b02ea96c66c34f614
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
7 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
9 $(PKG)_URL := http://pkgs.fedoraproject.org/repo/pkgs/epstool/epstool-3.08.tar.gz/465a57a598dbef411f4ecbfbd7d4c8d7/$($(PKG)_FILE)
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
10 $(PKG)_DEPS :=
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
11
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
12 define $(PKG)_UPDATE
5140
d461d2670df7 * src/epstool.mk: implement update rule
John Donoghue
parents: 3900
diff changeset
13 $(WGET) -q -O- 'http://www.ghostgum.com.au/software/epstool.htm' | \
d461d2670df7 * src/epstool.mk: implement update rule
John Donoghue
parents: 3900
diff changeset
14 $(SED) -n 's|.*download/epstool-\([0-9].*\)\.tar\.gz\".*|\1|p' | \
d461d2670df7 * src/epstool.mk: implement update rule
John Donoghue
parents: 3900
diff changeset
15 tail -1
3762
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
16 endef
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
17
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
18 define $(PKG)_BUILD
3900
b68c2c052a28 eliminate extra /usr directory level for cross build of epstool
John W. Eaton <jwe@octave.org>
parents: 3895
diff changeset
19 cd '$(1)' && make CC="$(MXE_CC)" CLINK=$(MXE_CC) LDFLAGS="$(MXE_LDFLAGS)" CFLAGS="$(MXE_CFLAGS)" prefix="$(HOST_PREFIX)" EPSTOOL_ROOT="/"
b68c2c052a28 eliminate extra /usr directory level for cross build of epstool
John W. Eaton <jwe@octave.org>
parents: 3895
diff changeset
20 cd '$(1)' && make prefix="$(3)$(HOST_PREFIX)" EPSTOOL_ROOT="/" install
3762
86d65a780bab epstool: added package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
21 endef