annotate src/xmlwrapp.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 295e88579d64
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: 1499
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: 408
diff changeset
3
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
4 PKG := xmlwrapp
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 422
diff changeset
5 $(PKG)_IGNORE :=
607
0e4f707cd651 update version of packages geos, libgcrypt, libsndfile, pango and xmlwrapp
Volker Grabsch <vog@notjusthosting.com>
parents: 522
diff changeset
6 $(PKG)_CHECKSUM := b3ef8bff215bbacd988790615b76379672105928
1466
2726fbef533c improved update script of all remaining SourceForge packages
Volker Grabsch <vog@notjusthosting.com>
parents: 1120
diff changeset
7 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
1499
9e587ca588dc remove $($PKG)_SUBDIR) from FILE and URL defintions
Mark Brand <mabrand@mabrand.nl>
parents: 1466
diff changeset
8 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
1466
2726fbef533c improved update script of all remaining SourceForge packages
Volker Grabsch <vog@notjusthosting.com>
parents: 1120
diff changeset
9 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
10 $(PKG)_DEPS := gcc libxml2 libxslt
145
53f68558e406 translated package: xmlwrapp
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11
53f68558e406 translated package: xmlwrapp
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12 define $(PKG)_UPDATE
1466
2726fbef533c improved update script of all remaining SourceForge packages
Volker Grabsch <vog@notjusthosting.com>
parents: 1120
diff changeset
13 wget -q -O- 'http://sourceforge.net/projects/xmlwrapp/files/xmlwrapp/' | \
2726fbef533c improved update script of all remaining SourceForge packages
Volker Grabsch <vog@notjusthosting.com>
parents: 1120
diff changeset
14 $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \
2726fbef533c improved update script of all remaining SourceForge packages
Volker Grabsch <vog@notjusthosting.com>
parents: 1120
diff changeset
15 head -1
145
53f68558e406 translated package: xmlwrapp
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 endef
53f68558e406 translated package: xmlwrapp
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17
53f68558e406 translated package: xmlwrapp
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 define $(PKG)_BUILD
254
f200927554c5 simplified build instructions for the new version of package xmlwrapp
Volker Grabsch <vog@notjusthosting.com>
parents: 253
diff changeset
19 cd '$(1)' && ./configure \
f200927554c5 simplified build instructions for the new version of package xmlwrapp
Volker Grabsch <vog@notjusthosting.com>
parents: 253
diff changeset
20 --host='$(TARGET)' \
f200927554c5 simplified build instructions for the new version of package xmlwrapp
Volker Grabsch <vog@notjusthosting.com>
parents: 253
diff changeset
21 --disable-shared \
f200927554c5 simplified build instructions for the new version of package xmlwrapp
Volker Grabsch <vog@notjusthosting.com>
parents: 253
diff changeset
22 --prefix='$(PREFIX)/$(TARGET)' \
f200927554c5 simplified build instructions for the new version of package xmlwrapp
Volker Grabsch <vog@notjusthosting.com>
parents: 253
diff changeset
23 PKG_CONFIG='$(TARGET)-pkg-config'
f200927554c5 simplified build instructions for the new version of package xmlwrapp
Volker Grabsch <vog@notjusthosting.com>
parents: 253
diff changeset
24 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= html_DATA=
145
53f68558e406 translated package: xmlwrapp
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 endef