Last active
December 30, 2015 05:49
-
-
Save marcusx/7784862 to your computer and use it in GitHub Desktop.
A drush make file for setting up a drupal media / wysiwyg integration test system.
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 = 7.x | |
api = 2 | |
projects[drupal][version] = "7.24" | |
; Modules | |
; ======= | |
projects[views][version] = 3.7 | |
projects[views][type] = "module" | |
projects[views][subdir] = "contrib" | |
; CKeditor Standalone | |
; https://drupal.org/project/ckeditor | |
; ---------------------------------------------------------------------------- | |
projects[ckeditor][version] = "1.x-dev" | |
projects[ckeditor][download][type] = "git" | |
projects[ckeditor][download][url] = "http://git.drupal.org/project/ckeditor.git" | |
; Version from Mon, 4 Nov 2013 | |
; See: http://drupalcode.org/project/ckeditor.git/commit/b69a9ac89d6283d4159aee805cd5b3b3c7bbc6d2 | |
projects[ckeditor][download][revision] = "b69a9ac89d6283d4159aee805cd5b3b3c7bbc6d2" | |
projects[ckeditor][subdir] = "contrib" | |
; Media | |
; https://drupal.org/project/media | |
; ---------------------------------------------------------------------------- | |
projects[media][version] = "2.x-dev" | |
projects[media][download][type] = "git" | |
projects[media][download][url] = "http://git.drupal.org/project/media.git" | |
; Version from Wed, 13 Nov 2013 | |
; See: http://drupalcode.org/project/media.git/commit/4a8831966c771b7acb611b8a21fdf63bb70a1b69 | |
projects[media][download][revision] = "4a8831966c771b7acb611b8a21fdf63bb70a1b69" | |
; Version from Tue, 3 Dec 2013 | |
; See: http://drupalcode.org/project/media.git/commit/8fe0f7d6d3787995d84a8077eadfa755f0dd850d | |
; projects[media][download][revision] = "8fe0f7d6d3787995d84a8077eadfa755f0dd850d" | |
projects[media][subdir] = contrib | |
; File Entity | |
; https://drupal.org/project/file_entity | |
; ---------------------------------------------------------------------------- | |
projects[file_entity][version] = "2.x-dev" | |
projects[file_entity][download][type] = "git" | |
projects[file_entity][download][url] = "http://git.drupal.org/project/file_entity.git" | |
projects[file_entity][download][revision] = "e80b22310889593ab8018c5c86649a60384ca854" | |
projects[file_entity][subdir] = contrib | |
projects[ctools][subdir] = contrib | |
; Some additional development modules | |
; ---------------------------------------------------------------------------- | |
projects[admin_menu][version] = 3.x-dev | |
projects[admin_menu][type] = "module" | |
projects[admin_menu][subdir] = "contrib" | |
projects[devel][version] = 1.x-dev | |
projects[devel][type] = "module" | |
projects[devel][subdir] = "contrib" | |
projects[module_filter][version] = 2.x-dev | |
projects[module_filter][type] = "module" | |
projects[module_filter][subdir] = "contrib" | |
; Patches : | |
; https://drupal.org/comment/8201939#comment-8201939 | |
projects[ckeditor][patch][] = "https://drupal.org/files/issues/ckeditor_1504696_102.patch" | |
; Libraries | |
; --------- | |
libraries[ckeditor][download][type] = "git" | |
libraries[ckeditor][download][url] = "https://github.com/ckeditor/ckeditor-dev.git" | |
libraries[ckeditor][download][branch] = "release/4.3.x" | |
libraries[ckeditor][destination] = "modules/contrib/ckeditor" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment