annotate src/vorbis.mk @ 2525:4d0f3a9da57e

all packages: use $(WGET) portability variable
author Tony Theodore <tonyt@logyst.com>
date Wed, 09 May 2012 01:16:05 +1000
parents 748e8ede3a09
children 47558e958113
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: 1447
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.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 409
diff changeset
3
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
4 PKG := vorbis
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 444
diff changeset
5 $(PKG)_IGNORE :=
2512
748e8ede3a09 update package vorbis
Mark Brand <mabrand@mabrand.nl>
parents: 2365
diff changeset
6 $(PKG)_CHECKSUM := 8dae60349292ed76db0e490dc5ee51088a84518b
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
7 $(PKG)_SUBDIR := libvorbis-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
8 $(PKG)_FILE := libvorbis-$($(PKG)_VERSION).tar.gz
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
9 $(PKG)_URL := http://downloads.xiph.org/releases/vorbis/$($(PKG)_FILE)
444
c828215f90ae enable libgomp (OpenMP) in package gcc by interweaving the pthread build into the gcc build
Volker Grabsch <vog@notjusthosting.com>
parents: 417
diff changeset
10 $(PKG)_DEPS := gcc ogg
157
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12 define $(PKG)_UPDATE
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2512
diff changeset
13 $(WGET) -q -O- 'http://www.xiph.org/downloads/' | \
157
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 $(SED) -n 's,.*libvorbis-\([0-9][^>]*\)\.tar.*,\1,p' | \
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 head -1
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 endef
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 define $(PKG)_BUILD
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 cd '$(1)' && ./configure \
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 --host='$(TARGET)' \
2512
748e8ede3a09 update package vorbis
Mark Brand <mabrand@mabrand.nl>
parents: 2365
diff changeset
21 --build="`config.guess`" \
157
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 --disable-shared \
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 --prefix='$(PREFIX)/$(TARGET)' \
935
9993be51f18d disable the use of the buggy Pthreads-w32 library in packages freetds, guile, libmikmod, libshout, libxml2, sqlite, tiff, vorbis and xerces
Volker Grabsch <vog@notjusthosting.com>
parents: 882
diff changeset
24 PKG_CONFIG='$(TARGET)-pkg-config'
157
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 endef