annotate src/libpaper.mk @ 829:649a06fa1605

bugfix: disable X11 support in package gst-plugins-base (by Tony Theodore)
author Volker Grabsch <vog@notjusthosting.com>
date Thu, 08 Apr 2010 11:22:39 +0200
parents ce91389b2d08
children f266c4bf62b0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
808
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
1 # This file is part of mingw-cross-env.
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
2 # See doc/index.html for further information.
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 # libpaper
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5 PKG := libpaper
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
6 $(PKG)_IGNORE :=
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
7 $(PKG)_VERSION := 1.1.23+nmu1
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
8 $(PKG)_CHECKSUM := 9091fc346845585ceff105c887f35012c3a39e2b
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
9 $(PKG)_SUBDIR := libpaper-$($(PKG)_VERSION)
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
10 $(PKG)_FILE := libpaper_$($(PKG)_VERSION).tar.gz
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11 $(PKG)_WEBSITE := http://packages.debian.org/unstable/libpaper1
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12 $(PKG)_URL := http://ftp.debian.org/debian/pool/main/libp/libpaper/$($(PKG)_FILE)
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 $(PKG)_DEPS := gcc
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 define $(PKG)_UPDATE
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 wget -q -O- 'http://packages.debian.org/unstable/source/libpaper' | \
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 $(SED) -n 's,.*libpaper_\([0-9][^>]*\)\.tar.*,\1,p' | \
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 head -1
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 endef
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 define $(PKG)_BUILD
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 cd '$(1)' && ./configure \
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 --host='$(TARGET)' \
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 --disable-shared \
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 --prefix='$(PREFIX)/$(TARGET)'
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
ce91389b2d08 new package: libpaper
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 endef