wok-6.x annotate drupal/receipt @ rev 15805
bash: prevent rm .bashrc error when removing bash
author | Richard Dunbar <mojo@slitaz.org> |
---|---|
date | Thu Jan 23 13:38:58 2014 +0000 (2014-01-23) |
parents | cf2e44bb0de1 |
children | cabdd1efa71f |
rev | line source |
---|---|
slaxemulator@7400 | 1 # SliTaz package receipt. |
slaxemulator@7400 | 2 |
slaxemulator@7400 | 3 PACKAGE="drupal" |
slaxemulator@13185 | 4 VERSION="7.15" |
slaxemulator@7400 | 5 CATEGORY="misc" |
slaxemulator@7400 | 6 SHORT_DESC="Drupal $VERSION PHP content management system." |
pascal@13025 | 7 MAINTAINER="slaxemulator@gmail.com" |
pascal@15202 | 8 LICENSE="GPL2" |
slaxemulator@7400 | 9 SUGGESTED="apache lighttpd cherokee" |
slaxemulator@7400 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
slaxemulator@7400 | 11 WEB_SITE="http://drupal.org/" |
slaxemulator@7400 | 12 WGET_URL="http://ftp.drupal.org/files/projects/$TARBALL" |
slaxemulator@7400 | 13 |
pascal@15202 | 14 DEPENDS="php mysql" |
pascal@15202 | 15 |
slaxemulator@7400 | 16 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@7400 | 17 genpkg_rules() |
slaxemulator@7400 | 18 { |
slaxemulator@7400 | 19 mkdir -p $fs/var/www/drupal |
slaxemulator@7400 | 20 cp -a $src/* $fs/var/www/drupal |
slaxemulator@7400 | 21 chown -R 80.80 $fs/var/www/drupal |
slaxemulator@7400 | 22 } |
slaxemulator@7400 | 23 |