annotate src/vorbis.mk @ 2365:b5321bdec505

Move full package names from src/*.mk into package list (index.html)
author Volker Grabsch <vog@notjusthosting.com>
date Thu, 29 Mar 2012 21:41:44 +0200
parents 99516e73b368
children 748e8ede3a09
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 :=
1447
8d43a215ea43 upgrade packages: atkmm gdal gdk-pixbuf glew glib gtk imagemagick lapack librsvg libvpx libxml2 ogg pixman vorbis x264
Volker Grabsch <vog@notjusthosting.com>
parents: 935
diff changeset
6 $(PKG)_CHECKSUM := 4b089ace4c8420c479b2fde9c5b01588cf86c959
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
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 wget -q -O- 'http://www.xiph.org/downloads/' | \
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)' \
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 --disable-shared \
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 --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
23 PKG_CONFIG='$(TARGET)-pkg-config'
157
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
4d3e93dbc408 translated package: vorbis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 endef