Makefile revision 851
749N/A###############################################################################
749N/A#
749N/A# Droid Fonts Makefile
749N/A#
749N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
749N/A# Use is subject to license terms.
749N/A#
749N/A# Permission is hereby granted, free of charge, to any person obtaining a
749N/A# copy of this software and associated documentation files (the
749N/A# "Software"), to deal in the Software without restriction, including
749N/A# without limitation the rights to use, copy, modify, merge, publish,
749N/A# distribute, and/or sell copies of the Software, and to permit persons
749N/A# to whom the Software is furnished to do so, provided that the above
749N/A# copyright notice(s) and this permission notice appear in all copies of
749N/A# the Software and that both the above copyright notice(s) and this
749N/A# permission notice appear in supporting documentation.
749N/A#
749N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
749N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
749N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
749N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
749N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
749N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
749N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
749N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
749N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
749N/A#
749N/A# Except as contained in this notice, the name of a copyright holder
749N/A# shall not be used in advertising or otherwise to promote the sale, use
749N/A# or other dealings in this Software without prior written authorization
749N/A# of the copyright holder.
749N/A#
749N/A# ident "@(#)Makefile 1.3 09/11/23 SMI"
749N/A#
749N/A
749N/A# Package name used in tarballs
749N/AMODULE_NAME=google-droid-fonts
749N/A
749N/A# Version number (used in path names)
749N/AMODULE_VERSION=1.00
749N/A
749N/A# Source tarball
749N/ASOURCE_TARBALL_NAME=$(MODULE_NAME)-$(MODULE_VERSION).tar.gz
749N/ASOURCE_TARBALL_NAME_SET=yes
749N/A
749N/A# Directory created when unpacking tarball
749N/ASOURCE_DIRNAME=base
749N/ASOURCE_DIRNAME_SET=yes
749N/A
749N/A# Download site for source
749N/ASOURCE_URL='http://android.git.kernel.org/?p=platform/frameworks/base.git;a=snapshot;h=b2fdf4096d6f8fc4aaca49bd804f480ba7892856;sf=tgz'
749N/ASOURCE_URL_SET=yes
749N/ASOURCE_UNCOMPRESS=gzcat
749N/A
749N/A# Patches to apply to source after unpacking, in order
749N/ASOURCE_PATCHES= # None
749N/A
749N/A# License file
749N/ALICENSE_FILE=NOTICE
749N/ALICENSE_FILE_SET=yes
749N/A
749N/ATTF_FONT_FILES = \
749N/A $(LICENSE_FILE) \
749N/A DroidSans.ttf \
749N/A DroidSans-Bold.ttf \
749N/A DroidSerif-Regular.ttf \
749N/A DroidSerif-Bold.ttf \
749N/A DroidSerif-Italic.ttf \
749N/A DroidSerif-BoldItalic.ttf \
749N/A DroidSansMono.ttf \
749N/A DroidSansFallback.ttf
749N/A
749N/ATTF_SUBDIR=google-droid
749N/ATTF_SUBDIR_SET=yes
749N/A
749N/A### Include common rulesets
749N/Ainclude ../Makefile.ttf
749N/A