annotate src/libpaper.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 42ada920402e 99bacd28b9c2
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: 1826
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.
808
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 PKG := libpaper
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5 $(PKG)_IGNORE :=
1826
90917d6ed4b2 upgrade packages: glew imagemagick libpaper x264
Volker Grabsch <vog@notjusthosting.com>
parents: 1761
diff changeset
6 $(PKG)_CHECKSUM := 1f7a810a433a5a68b099aa92777cc2d0b3d03b42
808
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
7 $(PKG)_SUBDIR := libpaper-$($(PKG)_VERSION)
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
8 $(PKG)_FILE := libpaper_$($(PKG)_VERSION).tar.gz
1761
1f10c699d2aa improved coding style
Volker Grabsch <vog@notjusthosting.com>
parents: 907
diff changeset
9 $(PKG)_URL := http://ftp.debian.org/debian/pool/main/libp/$(PKG)/$($(PKG)_FILE)
808
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
10 $(PKG)_DEPS := gcc
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12 define $(PKG)_UPDATE
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 wget -q -O- 'http://packages.debian.org/unstable/source/libpaper' | \
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 $(SED) -n 's,.*libpaper_\([0-9][^>]*\)\.tar.*,\1,p' | \
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 head -1
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 endef
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 define $(PKG)_BUILD
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 cd '$(1)' && ./configure \
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 --host='$(TARGET)' \
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 --disable-shared \
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 --prefix='$(PREFIX)/$(TARGET)'
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 endef