This repository has been archived by the owner on Mar 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ascm_profile.make
92 lines (68 loc) · 2.58 KB
/
ascm_profile.make
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
; Makefile for ASCM.
; 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[admin_menu][subdir] = "contrib"
projects[admin_menu][type] = "module"
projects[admin_menu][version] = "3.0-rc4"
projects[backup_migrate][subdir] = "contrib"
projects[backup_migrate][type] = "module"
projects[backup_migrate][version] = "2.4"
projects[ctools][subdir] = "contrib"
projects[ctools][type] = "module"
projects[ctools][version] = "1.2"
projects[date][subdir] = "contrib"
projects[date][type] = "module"
projects[date][version] = "2.6"
projects[devel][subdir] = "contrib"
projects[devel][type] = "module"
projects[devel][version] = "1.3"
projects[diff][subdir] = "contrib"
projects[diff][type] = "module"
projects[diff][version] = "3.2"
projects[features][subdir] = "contrib"
projects[features][type] = "module"
projects[features][version] = "1.0"
projects[module_filter][subdir] = "contrib"
projects[module_filter][type] = "module"
projects[module_filter][version] = "1.7"
projects[profiler][subdir] = "contrib"
projects[profiler][type] = "module"
projects[profiler][version] = "2.0-beta1"
projects[token][subdir] = "contrib"
projects[token][type] = "module"
projects[token][version] = "1.5"
projects[wysiwyg][subdir] = "contrib"
projects[wysiwyg][type] = "module"
projects[wysiwyg][version] = "2.2"
projects[wysiwyg][patch][] = "http://drupal.org/files/wysiwyg-support_v4_ckeditor-1853550-73.patch"
; Themes
; --------
projects[omega][subdir] = "contrib"
projects[omega][type] = "theme"
projects[omega][version] = "3.1"
; Libraries
; ---------
libraries[ckeditor][type] = "libraries"
libraries[ckeditor][download][type] = "file"
libraries[ckeditor][download][url] = "http://download.cksource.com/CKEditor/CKEditor/CKEditor%204.0/ckeditor_4.0_full.tar.gz"
libraries[profiler][type] = "libraries"
libraries[profiler][download][type] = "get"
libraries[profiler][download][url] = "http://ftp.drupal.org/files/projects/profiler-7.x-2.0-beta1.tar.gz"