diff --git a/README.txt b/README.txt index d5168e33667b04e6683fe1ca22a4af7239369244..c842f29d5480e22f912ec616498ac35d35c4514b 100644 --- a/README.txt +++ b/README.txt @@ -20,24 +20,16 @@ Requirements In addition to the standard Drupal requirements you will need the following to make use of Build Kit: -- drush 3.1 - http://drupal.org/project/drush -- drush make 2.0 beta 9 - http://drupal.org/project/drush_make +- drush - http://drupal.org/project/drush - git - http://git-scm.com Getting started --------------- -Build Kit for 7.x requies several patches to be applied to Drupal core. It -provides a `distro.make` file for building a full Drupal distro including core -patches as well as a copy of the `buildkit` install profile. +You can use drush to download Drupal core with the Build Kit installation +profile. -1. Grab the `distro.make` file from Build Kit and run: - - $ drush make distro.make [directory] - - or use its url on Drupal.org directly: - - $ drush make "http://drupalcode.org/project/buildkit.git/blob_plain/refs/heads/7.x-2.x:/distro.make" [directory] +1. `$ drush dl buildkit` 2. Choose the "Build Kit" install profile when installing Drupal @@ -51,16 +43,18 @@ extends Build Kit: 1. Create the following directory and files: profiles/myprofile - profiles/myprofile/distro.make + profiles/myprofile/build-myprofile.make profiles/myprofile/myprofile.info profiles/myprofile/myprofile.make profiles/myprofile/myprofile.install + profiles/myprofile/myprofile.profile -2. Enter an include statement into `distro.make` to include the contents of the - Build Kit distro makefile and then add your new install profile to it: +2. Enter an include statement into `build-myprofile.make` to include the + contents of the Build Kit distro make file and then add your new install + profile to it: - ; Include Build Kit distro makefile via URL - includes[] = http://drupalcode.org/project/buildkit.git/blob_plain/refs/heads/7.x-2.x:/distro.make + ; Include Drupal core and any core patches from Build Kit + includes[] = http://drupalcode.org/project/buildkit.git/blob_plain/refs/heads/7.x-2.x:/drupal-org-core.make ; Add myprofile to the full Drupal distro build projects[myprofile][type] = profile @@ -68,8 +62,8 @@ extends Build Kit: projects[myprofile][download][url] = git://github.com/myname/myprofile.git 3. Enter an include statement into `myprofile.make` to include the contents of - the Build Kit install profile makefile and then add any additional projects - or overrides: + the Build Kit install profile makefile and then add any additional projects + or overrides: ; Include Build Kit install profile makefile via URL includes[] = http://drupalcode.org/project/buildkit.git/blob_plain/refs/heads/7.x-2.x:/drupal-org.make @@ -78,14 +72,12 @@ extends Build Kit: projects[job_scheduler][version] = 2.0-alpha1 ... - For more information about using makefiles see the [drush make README][1]. - 4. Copy the contents of `buildkit.info` into `myprofile.info` and then adjust its contents to reflect the metadata, modules and theme you want to enable. For example: name = My First Drupal Distro - core = 6.x + core = 7.x description = Hello world! dependencies[] = feeds @@ -101,19 +93,21 @@ extends Build Kit: variable_set('theme_default', 'stark'); } -6. Build a full distro using the following command from `profiles/myprofile`: +6. Build a full distro using the following command from the root of your + project directory. - $ drush make distro.make [directory] + $ drush make --prepare-install --contrib-destination=profiles/myprofile profiles/myprofile/build-myprofile.make --yes 7. Choose "My First Drupal Distro" when installing Drupal! -Maintainers ------------ +Current Maintainer +------------------ +Shawn Price (langworthy) + +Past Maintainers +---------------- - Alex Barth (alex_b) - Jeff Miccolis (jmiccolis) - Will White - Young Hahn (yhahn) - - -[1]: http://drupalcode.org/project/drush_make.git/blob_plain/refs/heads/6.x-2.x:/README.txt