mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
22 lines
706 B
Bash
22 lines
706 B
Bash
# $Id: PKGBUILD 2376 2009-09-17 08:47:25Z spupykin $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Corrado Primier <cp663137@stud.polimi.it>
|
|
|
|
pkgname=drupal
|
|
pkgver=6.14
|
|
pkgrel=1
|
|
pkgdesc="A PHP-based content management platform"
|
|
arch=('any')
|
|
url="http://www.drupal.org/"
|
|
license=('GPL')
|
|
depends=('php')
|
|
install=('drupal.install')
|
|
backup=(srv/http/drupal/.htaccess)
|
|
source=(http://www.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('014bb453a8d0adb0233c763e40d63859')
|
|
|
|
build() {
|
|
mkdir -p $startdir/pkg/srv/http/drupal
|
|
cp -r $startdir/src/$pkgname-$pkgver/{*,.htaccess} $startdir/pkg/srv/http/drupal
|
|
echo "deny from all" > $startdir/pkg/srv/http/drupal/.htaccess
|
|
}
|