-
-
Save bmann/406511 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Basic Drush Make file | |
; See the Drush Make prject page for info: | |
; http://drupal.org/project/drush_make | |
; This file originally by Brock Boland [[email protected]] | |
; Modified by Boris Mann [http://bmannconsulting.com/contact] | |
; Core version | |
; ------------ | |
; Each makefile should begin by declaring the core version of Drupal that all | |
; projects should be compatible with. | |
core = 6.x | |
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[email][subdir] = "contrib" | |
projects[filefield][subdir] = "contrib" | |
projects[imagefield][subdir] = "contrib" | |
projects[link][subdir] = "contrib" | |
; views | |
projects[views][subdir] = "contrib" | |
projects[semanticviews][subdir] = "contrib" | |
projects[views_bulk_operations][subdir] = "contrib" | |
; admin | |
projects[adminrole][subdir] = "contrib" | |
projects[backup_migrate][subdir] = "contrib" | |
projects[better_formats][subdir] = "contrib" | |
projects[devel][subdir] = "contrib" | |
; content | |
projects[markdown][subdir] = "contrib" | |
projects[mollom][subdir] = "contrib" | |
projects[pathauto][subdir] = "contrib" | |
projects[webform][subdir] = "contrib" | |
; comments | |
projects[comment_notify][subdir] = "contrib" | |
; devseed | |
projects[context][subdir] = "contrib" | |
projects[ctools][subdir] = "contrib" | |
projects[features][subdir] = "contrib" | |
projects[spaces][subdir] = "contrib" | |
projects[strongarm][subdir] = "contrib" | |
projects[admin][subdir] = "contrib" | |
projects[jquery_ui][subdir] = "contrib" | |
; other | |
projects[feedburner][subdir] = "contrib" | |
projects[globalredirect][subdir] = "contrib" | |
projects[google_analytics][subdir] = "contrib" | |
projects[imageapi][subdir] = "contrib" | |
projects[imagecache][subdir] = "contrib" | |
projects[token][subdir] = "contrib" | |
; Themes | |
projects[zen][type] = theme | |
; jQuery UI | |
libraries[jquery_ui][download][type] = "get" | |
libraries[jquery_ui][download][url] = "http://jquery-ui.googlecode.com/files/jquery.ui-1.6.zip" | |
libraries[jquery_ui][directory_name] = "jquery.ui" | |
libraries[jquery_ui][destination] = "modules/contrib/jquery_ui" | |
; CKEditor | |
libraries[ckeditor][download][type] = "get" | |
libraries[ckeditor][download][url] = "http://download.cksource.com/CKEditor/CKEditor/CKEditor%203.2.1/ckeditor_3.2.1.zip" | |
libraries[ckeditor][directory_name] = "ckeditor" | |
libraries[ckeditor][destination] = "libraries" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment