Skip to content

Instantly share code, notes, and snippets.

@pvhee
Forked from brockboland/starter.make
Created September 26, 2011 14:10
Show Gist options
  • Save pvhee/1242318 to your computer and use it in GitHub Desktop.
Save pvhee/1242318 to your computer and use it in GitHub Desktop.
Basic Drush Make starter file
; Basic Drush Make file
; See the Drush Make prject page for info:
; http://drupal.org/project/drush_make
; This file by Brock Boland [brock@brockboland.com]
;
; This file is also on GitHub:
; http://gist.github.com/404528
; Core version
; ------------
; Each makefile should begin by declaring the core version of Drupal that all
; projects should be compatible with.
core = 6.x
api = 2
projects[] = drupal
; Projects
; --------
; Each project that you would like to include in the makefile should be
; declared under the `projects` key. The simplest declaration of a project
; looks like this:
; CCK
projects[cck][subdir] = "contrib"
projects[date][subdir] = "contrib"
projects[email][subdir] = "contrib"
projects[filefield][subdir] = "contrib"
projects[imagefield][subdir] = "contrib"
projects[link][subdir] = "contrib"
; Views
projects[views][subdir] = "contrib"
projects[views_bulk_operations][subdir] = "contrib"
; Admin
projects[admin][subdir] = "contrib"
projects[advanced_help][subdir] = "contrib"
; Development
projects[devel][subdir] = "contrib"
projects[features][subdir] = "contrib"
projects[diff][subdir] = "contrib"
projects[strongarm][subdir] = "contrib"
; Content
; Menus
; Comments
; Context
projects[context][subdir] = "contrib"
; Images
projects[imageapi][subdir] = "contrib"
projects[imagecache][subdir] = "contrib"
; Paths
; Themes/Theming
projects[rubik][type] = theme
projects[tao][type] = theme
; Other
projects[ctools][subdir] = "contrib"
projects[token][subdir] = "contrib"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment