# -*-makefile-*- # # Copyright (C) 2009 by Robert Schwebel # # See CREDITS for details about who has contributed to this project. # # For further information about the PTXdist project and license conditions # see the README file. # # # We provide this package # PACKAGES-$(PTXCONF_PANGOMM) += pangomm # # Paths and names # PANGOMM_VERSION := 2.28.4 PANGOMM_MD5 := 40b3b34dbbefbc411a81d05dba5275ca PANGOMM := pangomm-$(PANGOMM_VERSION) PANGOMM_SUFFIX := tar.bz2 PANGOMM_URL := http://ftp.acc.umu.se/pub/GNOME/sources/pangomm/2.28/$(PANGOMM).$(PANGOMM_SUFFIX) PANGOMM_SOURCE := $(SRCDIR)/$(PANGOMM).$(PANGOMM_SUFFIX) PANGOMM_DIR := $(BUILDDIR)/$(PANGOMM) # ---------------------------------------------------------------------------- # Prepare # ---------------------------------------------------------------------------- PANGOMM_PATH := PATH=$(CROSS_PATH) PANGOMM_ENV := $(CROSS_ENV) # # autoconf # PANGOMM_AUTOCONF := \ $(CROSS_AUTOCONF_USR) \ --disable-documentation # ---------------------------------------------------------------------------- # Target-Install # ---------------------------------------------------------------------------- $(STATEDIR)/pangomm.targetinstall: @$(call targetinfo) @$(call install_init, pangomm) @$(call install_fixup, pangomm,PRIORITY,optional) @$(call install_fixup, pangomm,SECTION,base) @$(call install_fixup, pangomm,AUTHOR,"Robert Schwebel ") @$(call install_fixup, pangomm,DESCRIPTION,missing) @$(call install_lib, pangomm, 0, 0, 0644, libpangomm-1.4) @$(call install_finish, pangomm) @$(call touch) # vim: syntax=make