annotate src/build-lzip.mk @ 5895:2db7f803d55d release

librsb: Update to version 1.2.0.10 (bug #60042). * src/librsb.mk: Update version and checksum. Remove work-around for fixed bug.
author Markus Mützel <markus.muetzel@gmx.de>
date Sun, 19 Sep 2021 14:32:07 +0200
parents 208cecd55407
children 944e97dd060d
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 :=
5013
208cecd55407 * src/build-lzip.mk: update to v1.21
John Donoghue
parents: 4545
diff changeset
6 $(PKG)_VERSION := 1.21
208cecd55407 * src/build-lzip.mk: update to v1.21
John Donoghue
parents: 4545
diff changeset
7 $(PKG)_CHECKSUM := 08bea2f275d639bfe85fe30887d269b96eac34e1
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