alvin_

roboto-1.2.recipe

Nov 24th, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.76 KB | None | 0 0
  1. SUMMARY="The Roboto font."
  2. DESCRIPTION="
  3.     The font, Roboto, is created specifically for the requirements of UI and
  4.     high-resolution screens.
  5.     "
  6. HOMEPAGE="http://www.google.com/fonts/specimen/Roboto"
  7. SRC_URI="http://developer.android.com/downloads/design/roboto-1.2.zip"
  8. CHECKSUM_MD5="45bfbcd71a74d73c6d2c97994abb7e00"
  9. LICENSE="Apache v2"
  10. COPYRIGHT="Copyright 2013 Christian Robertson"
  11. REVISION="1"
  12. ARCHITECTURES="any"
  13. DISABLE_SOURCE_PACKAGE=yes
  14. PROVIDES="
  15.     Roboto=$portVersion
  16.     "
  17. REQUIRES=" "
  18. BUILD_REQUIRES=" "
  19. BUILD_PREREQUIRES="
  20.     coreutils
  21.     "
  22. #SOURCE_DIR="roboto-1.2"
  23.  
  24. BUILD()
  25. {
  26.     true
  27. }
  28.  
  29. INSTALL()
  30. {
  31.     FONTDIR=$fontsDir/roboto
  32.     mkdir -p ${FONTDIR}
  33.    
  34.     cd Roboto
  35.     cp *.ttf ${FONTDIR}
  36.    
  37.     cd ..
  38.     cd RobotoCondensed
  39.     cp *.ttf ${FONTDIR}
  40. }
Advertisement
Add Comment
Please, Sign In to add comment