Advertisement
Guest User

Untitled

a guest
Aug 14th, 2014
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. commit 6f68b3543c562aa954497e78ae7e05f4bbef93c0
  2. Author: Pedro Alvarez <pedro.alvarez@codethink.co.uk>
  3. Date: Thu Aug 14 16:56:41 2014 +0000
  4.  
  5. Rewrite morphology as YAML and remove tab characters
  6.  
  7. diff --git a/freefont-otf.morph b/freefont-otf.morph
  8. index 2cb0623..d6abffc 100644
  9. --- a/freefont-otf.morph
  10. +++ b/freefont-otf.morph
  11. @@ -1,12 +1,6 @@
  12. -{
  13. - "name": "freefont-otf",
  14. - "kind": "chunk",
  15. - "configure-commands": [
  16. - ],
  17. - "build-commands": [
  18. - ],
  19. - "install-commands": [
  20. - "mkdir -p $DESTDIR/usr/share/fonts/opentype/freefont",
  21. - "install -p *.otf $DESTDIR/usr/share/fonts/opentype/freefont"
  22. - ]
  23. -}
  24. +name: freefont-otf
  25. +kind: chunk
  26. +build-system: manual
  27. +install-commands:
  28. +- mkdir -p "$DESTDIR/usr/share/fonts/opentype/freefont"
  29. +- install -p *.otf "$DESTDIR/usr/share/fonts/opentype/freefont"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement