annotate src/build-lzip.mk @ 6359:b68148d8be7b

* src/mesa.mk: update to v22.1.5
author John Donoghue <john.donoghue@ieee.org>
date Wed, 10 Aug 2022 15:18:27 -0400
parents 944e97dd060d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4236
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := build-lzip
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
6156
944e97dd060d * src/build-lzip.mk: update to v1.23
John Donoghue <john.donoghue@ieee.org>
parents: 5013
diff changeset
6 $(PKG)_VERSION := 1.23
944e97dd060d * src/build-lzip.mk: update to v1.23
John Donoghue <john.donoghue@ieee.org>
parents: 5013
diff changeset
7 $(PKG)_CHECKSUM := 9793edc5e4acda46b3ea16a47ea0dca02a6f6e3d
4236
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := lzip-$($(PKG)_VERSION)
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := lzip-$($(PKG)_VERSION).tar.gz
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := http://download.savannah.gnu.org/releases/lzip/$($(PKG)_FILE)
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 $(PKG)_DEPS :=
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
4545
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4391
diff changeset
14 $(WGET) -q -O- http://download.savannah.gnu.org/releases/lzip | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4391
diff changeset
15 $(SED) -n 's,.*<a href="lzip-\([0-9][\.0-9]*\)\.tar\.gz.*,\1,p' | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4391
diff changeset
16 $(SORT) -V | tail -1
4236
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 endef
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 define $(PKG)_BUILD
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 cd '$(1)' && './configure' \
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 --prefix='$(BUILD_TOOLS_PREFIX)'
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 $(MAKE) -C '$(1)' -j '$(JOBS)' install DESTDIR='$(3)'
49430638c5bd build-lzip: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 endef