Created
July 20, 2011 17:20
-
-
Save ornj/1095401 to your computer and use it in GitHub Desktop.
Make file for Drupal 7 kickstart installation
This file contains hidden or 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
; Core version | |
; ------------ | |
; Each makefile should begin by declaring the core version of Drupal that all | |
; projects should be compatible with. | |
core = 7.x | |
; API version | |
; ------------ | |
; Every makefile needs to declare its Drush Make API version. This version of | |
; drush make uses API version `2`. | |
api = 2 | |
; Core project | |
; ------------ | |
; In order for your makefile to generate a full Drupal site, you must include | |
; a core project. This is usually Drupal core, but you can also specify | |
; alternative core projects like Pressflow. Note that makefiles included with | |
; install profiles *should not* include a core project. | |
; Drupal 7.x. Requires the `core` property to be set to 7.x. | |
projects[drupal][version] = 7 | |
; Modules | |
; -------- | |
projects[conditional_styles][subdir] = "contrib" | |
projects[ctools][subdir] = "contrib" | |
projects[date][subdir] = "contrib" | |
projects[insert][subdir] = "contrib" | |
projects[menu_block][subdir] = "contrib" | |
projects[pathauto][subdir] = "contrib" | |
projects[token][subdir] = "contrib" | |
projects[ckeditor][subdir] = "contrib" | |
projects[jquery_update][subdir] = "contrib" | |
projects[views][subdir] = "contrib" | |
projects[webform][subdir] = "contrib" | |
projects[xmlsitemap][subdir] = "contrib" | |
projects[devel][subdir] = "dev" | |
projects[coder][subdir] = "dev" | |
; Libraries | |
; --------- | |
libraries[ckeditor][download][type] = "get" | |
libraries[ckeditor][download][url] = "http://download.cksource.com/CKEditor/CKEditor/CKEditor%203.3.1/ckeditor_3.3.1.tar.gz" | |
libraries[html5bp][download][type] = "file" | |
libraries[html5bp][download][url] = "http://github.com/paulirish/html5-boilerplate/zipball/v1.0stripped" | |
libraries[jquery][download][type] = "file" | |
libraries[jquery][download][url] = "https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js" | |
libraries[jqueryui][download][type] = "file" | |
libraries[jqueryui][download][url] = "https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.min.js" | |
; Themes | |
; -------- | |
; Default D7 HTML5 from git | |
projects[drupal7_dev_theme][type] = "theme" | |
projects[drupal7_dev_theme][download][type] = "git" | |
projects[drupal7_dev_theme][download][url] = "git://github.com/ornj/drupal7_dev_theme.git" | |
; Profiles | |
; -------- | |
; Kickstart installation profile from git | |
projects[kickstart][type] = "profile" | |
projects[kickstart][download][type] = "git" | |
projects[kickstart][download][url] = "git://github.com/ornj/kickstart.git" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment