summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 375fa2eb6f495bb86262997dbb19b7e9119441d4 (plain)
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
# $Id$
# Maintainer: Allen Zhong <moeallenz@gmail.com>
# Contributor: Jan de Groot <jgc@archlinux.org>

pkgname=mod_fcgid-legacy
pkgver=2.3.9
pkgrel=1
pkgdesc="A FastCGI module for Apache HTTP Server, build with apache httpd 2.2"
license=('APACHE')
arch=('i686' 'x86_64')
url="https://httpd.apache.org/mod_fcgid/"
depends=('apache22')
conflicts=('mod_fcgid')
source=(https://www.apache.org/dist/httpd/mod_fcgid/mod_fcgid-$pkgver.tar.bz2{,.asc})
sha1sums=('f0b6d87dfcfe18b318905a3f91274051f3f17945'
          'SKIP')

build() {
  cd mod_fcgid-$pkgver
  ./configure.apxs 
  make
}

package() {
  cd mod_fcgid-$pkgver
  make DESTDIR="$pkgdir" install
  rm -rf "${pkgdir}/usr/share"
  rm -rf "${pkgdir}/etc"
}