# HG changeset patch # User Volker Grabsch # Date 1267012025 -3600 # Node ID ce91389b2d08f6f8246e2c000cc08b9613b8b67f # Parent 622c0a7b8f0e9c90fecf4f47fd27c5ed008e5754 new package: libpaper diff -r 622c0a7b8f0e -r ce91389b2d08 doc/index.html --- a/doc/index.html Tue Feb 23 23:36:18 2010 +0100 +++ b/doc/index.html Wed Feb 24 12:47:05 2010 +0100 @@ -422,7 +422,8 @@

Some new packages are supported: - liboil, libshout, gstreamer, gst-plugins-base and gst-plugins-good + liboil, libshout, gstreamer, gst-plugins-base, gst-plugins-good + and libpaper

diff -r 622c0a7b8f0e -r ce91389b2d08 src/libpaper.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/libpaper.mk Wed Feb 24 12:47:05 2010 +0100 @@ -0,0 +1,27 @@ +# This file is part of mingw-cross-env. +# See doc/index.html for further information. + +# libpaper +PKG := libpaper +$(PKG)_IGNORE := +$(PKG)_VERSION := 1.1.23+nmu1 +$(PKG)_CHECKSUM := 9091fc346845585ceff105c887f35012c3a39e2b +$(PKG)_SUBDIR := libpaper-$($(PKG)_VERSION) +$(PKG)_FILE := libpaper_$($(PKG)_VERSION).tar.gz +$(PKG)_WEBSITE := http://packages.debian.org/unstable/libpaper1 +$(PKG)_URL := http://ftp.debian.org/debian/pool/main/libp/libpaper/$($(PKG)_FILE) +$(PKG)_DEPS := gcc + +define $(PKG)_UPDATE + wget -q -O- 'http://packages.debian.org/unstable/source/libpaper' | \ + $(SED) -n 's,.*libpaper_\([0-9][^>]*\)\.tar.*,\1,p' | \ + head -1 +endef + +define $(PKG)_BUILD + cd '$(1)' && ./configure \ + --host='$(TARGET)' \ + --disable-shared \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= +endef