mirror of
https://github.com/archlinux/aur.git
synced 2026-02-13 20:13:31 +01:00
Added drush_make from the AUR.
This commit is contained in:
commit
ba94d84d09
2 changed files with 34 additions and 0 deletions
13
.SRCINFO
Normal file
13
.SRCINFO
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
pkgbase = drush_make
|
||||
pkgdesc = Drush Makefile extension for building Drupal sites.
|
||||
pkgver = 2.3
|
||||
pkgrel = 1
|
||||
url = http://drupal.org/project/drush_make/
|
||||
arch = any
|
||||
license = GPL
|
||||
depends = drush
|
||||
source = http://ftp.drupal.org/files/projects/drush_make-6.x-2.3.tar.gz
|
||||
md5sums = d6636db943d4f996474b09245060263c
|
||||
|
||||
pkgname = drush_make
|
||||
|
||||
21
PKGBUILD
Normal file
21
PKGBUILD
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Maintainer: Josh 'jheretic' King <josh at chambana dot net>
|
||||
|
||||
pkgname=drush_make
|
||||
pkgver=2.3
|
||||
pkgrel=1
|
||||
pkgdesc="Drush Makefile extension for building Drupal sites."
|
||||
arch=('any')
|
||||
url="http://drupal.org/project/drush_make/"
|
||||
license=('GPL')
|
||||
depends=('drush')
|
||||
source=(http://ftp.drupal.org/files/projects/$pkgname-6.x-$pkgver.tar.gz)
|
||||
|
||||
build() {
|
||||
cd ${srcdir}/${pkgname}
|
||||
mkdir -p ${pkgdir}/usr/share/doc/drush/drush_make/
|
||||
mv ./*.txt ${pkgdir}/usr/share/doc/drush/drush_make/ || return 1
|
||||
mv EXAMPLE.make ${pkgdir}/usr/share/doc/drush/drush_make/ || return 1
|
||||
install -d ${pkgdir}/usr/share/drush/commands/${pkgname}
|
||||
cp -rf ${srcdir}/${pkgname}/* ${pkgdir}/usr/share/drush/commands/${pkgname}
|
||||
}
|
||||
md5sums=('d6636db943d4f996474b09245060263c')
|
||||
Loading…
Add table
Reference in a new issue