Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
220 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # name: formula
  3. # key: form
  4. # --
  5. require 'formula'
  6. class ${1:Name} <Formula
  7. url '${2:url}'
  8. homepage '${3:home}'
  9. md5 '${4:md5}'
  10. def install
  11. ${5:system "./configure"}
  12. $0
  13. end
  14. end