wok annotate droid-font/receipt @ rev 12139

Up: cookutils (1.7) - Now create XML feed for cooked pkgs
author Christophe Lincoln <pankso@slitaz.org>
date Wed Mar 14 03:00:34 2012 +0100 (2012-03-14)
parents a73c94997539
children eb8067417980
rev   line source
devl547@6090 1 # SliTaz package receipt.
devl547@6090 2
devl547@6090 3 PACKAGE="droid-font"
devl547@6090 4 VERSION="2010-04-09"
pascal@6412 5 GIT_HASH=22a27501a220e8f2ea5f9be3312bb0b64e32a71a
devl547@6090 6 CATEGORY="x-window"
devl547@6090 7 SHORT_DESC="Font family from Google's Android project"
devl547@6090 8 MAINTAINER="devl547@gmail.com"
gokhlayeh@8798 9 BUILD_DEPENDS="wget"
devl547@6090 10 WEB_SITE="http://www.droidfonts.com/"
devl547@6090 11 # Located in git repo, so we need a snapshot and some dirty hacks.
gokhlayeh@8798 12 TARBALL="$PACKAGE-$VERSION.tgz"
gokhlayeh@8798 13 WGET_URL="http://android.git.kernel.org/?p=platform/frameworks/base.git;f=data/fonts;a=snapshot;h=$GIT_HASH;sf=tgz"
devl547@6090 14
devl547@6090 15 # Rules to configure and make the package.
gokhlayeh@8798 16 # Keep an empty compile_rules to make tazwok install build depends.
devl547@6090 17 compile_rules()
devl547@6090 18 {
gokhlayeh@8798 19 :
devl547@6090 20 }
devl547@6090 21
devl547@6090 22 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@6090 23 genpkg_rules()
devl547@6090 24 {
pascal@6412 25 dir=$fs/usr/share/fonts/truetype/droid-font
pascal@6412 26 mkdir -p $dir
pascal@6412 27 cp -a $src/*.ttf $dir
pascal@6412 28 chmod -x $dir/*.ttf
devl547@6090 29 }