; $Id$ ; ; Example makefile ; ---------------- ; This is an example makefile to introduce new users of drush_make to the ; syntax and options available to drush_make. For a full description of all ; options available, see README.txt. ; This make file is a working makefile - try it! Any line starting with a `;` ; is a comment. ; 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 it's Drush Make API version. This version of ; drush make uses API version `2`. api = 2 ; Common modules includes[eclipse_common] = "../php/configs/make/eclipsefdn-common.make" ; Contrib ; Need to manually install or add to update script ; https://foundation.eclipse.org:29418/infrazilla/show_bug.cgi?id=1076 projects[services][subdir] = "contrib" projects[services][type] = "module" projects[services][version] = "3.28" projects[services][patch][] = "../php/configs/make/patches/services/ef-12-services-support-dots-2.patch" projects[nodeaccess][subdir] = "contrib" projects[nodeaccess][type] = "module" projects[nodeaccess][version] = "1.8" projects[hellosign][subdir] = "contrib" projects[hellosign][type] = "module" projects[hellosign][version] = "1.0" projects[hellosign][patch][] = "../php/configs/make/patches/hellosign-php-sdk/hellosign-php-sdk-allow-chrisguindon-api.patch" projects[readonlymode][subdir] = "contrib" projects[readonlymode][type] = "module" projects[readonlymode][version] = "1.2" projects[stripe][subdir] = "contrib" projects[stripe][type] = "module" projects[stripe][version] = "1.0-alpha1" projects[stripe][patch][] = "../php/configs/make/patches/stripe/stripe-add-web-proxy-support-2912208-1.patch" libraries[stripe-php][download][type] = "git" libraries[stripe-php][download][url] = "https://github.com/stripe/stripe-php" libraries[stripe-php][directory_name] = "stripe-php" libraries[stripe-php][download][revision] = "ee57d045ef3d199ee9371e8f61679656b3db0816" libraries[stripe-php][type] = "library" libraries[hellosign-php-sdk][download][type] = "git" libraries[hellosign-php-sdk][download][url] = "https://github.com/hellosign/hellosign-php-sdk.git" libraries[hellosign-php-sdk][directory_name] = "hellosign-php-sdk" libraries[hellosign-php-sdk][download][tag] = "v3.5.3" libraries[hellosign-php-sdk][type] = "library" libraries[hellosign-php-sdk][patch][] = "../php/configs/make/patches/hellosign-php-sdk/hellosign-php-sdk-eclipse-proxy.patch" libraries[hellosign-php-sdk][patch][] = "../php/configs/make/patches/hellosign-php-sdk/hellosign-php-sdk-remove-dev-dependencies-02.patch" ; Custom projects[committer_paperwork][type] = "module" projects[committer_paperwork][subdir] = "custom" projects[committer_paperwork][download][type] = "git" projects[committer_paperwork][download][url] = "ssh://git@gitlab.eclipse.org/eclipsefdn/it/websites/drupal/committer_paperwork.git" projects[committer_paperwork][download][tag] = "7.x-1.68" projects[eclipse_api][type] = "module" projects[eclipse_api][subdir] = "custom" projects[eclipse_api][download][type] = "git" projects[eclipse_api][download][url] = "ssh://git@gitlab.eclipse.org/eclipsefdn/it/websites/drupal/eclipse_api.git" projects[eclipse_api][download][tag] = "7.x-2.0"