summaryrefslogtreecommitdiff
path: root/community/fcgiwrap
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-11-04 10:03:29 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-11-04 10:03:29 +0100
commit188c20297098b706ee2687fe404b0c63eb2600d9 (patch)
tree069c4fab3fe7423afdcc360ffeba09900c66a00c /community/fcgiwrap
parentf104a5865e580d1a5c50f83b6bfac2885f065c92 (diff)
parent2030e810a5cfd4d3ff6e0f8930560c96f2990eb2 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/ccrypt/PKGBUILD community/mathomatic/PKGBUILD community/tuxpaint/PKGBUILD extra/aisleriot/PKGBUILD extra/dhcp/PKGBUILD extra/gnome-applets/PKGBUILD extra/gnome-shell/PKGBUILD extra/xdg-user-dirs-gtk/PKGBUILD
Diffstat (limited to 'community/fcgiwrap')
-rw-r--r--community/fcgiwrap/PKGBUILD22
1 files changed, 9 insertions, 13 deletions
diff --git a/community/fcgiwrap/PKGBUILD b/community/fcgiwrap/PKGBUILD
index 4f6a4f374..f3d818fea 100644
--- a/community/fcgiwrap/PKGBUILD
+++ b/community/fcgiwrap/PKGBUILD
@@ -1,44 +1,40 @@
-# $Id: PKGBUILD 75304 2012-08-18 12:28:57Z lfleischer $
+# $Id: PKGBUILD 79378 2012-11-03 21:00:27Z lfleischer $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Aaron Bull Schaefer <aaron@elasticdog.com>
# Contributor: Ron Huang <ronhuang+aur at gmail dot com>
pkgname=fcgiwrap
pkgver=1.0.3
-_gitrev='2e301c8'
-pkgrel=3
+_gitrev='b9f03e6'
+pkgrel=4
pkgdesc='A simple server for running CGI applications over FastCGI.'
arch=('i686' 'x86_64' 'mips64el')
url='http://nginx.localdomain.pl/wiki/FcgiWrap'
license=('MIT')
-depends=('fcgi' 'spawn-fcgi')
+depends=('fcgi' 'systemd')
backup=('etc/conf.d/fcgiwrap')
-source=("https://github.com/downloads/gnosek/fcgiwrap/${pkgname}-${pkgver}.tar.gz"
+source=("ftp://ftp.archlinux.org/other/community/${pkgname}/${pkgname}-${_gitrev}.tar.gz"
'fcgiwrap.conf.d'
'fcgiwrap.rc.d'
- 'fcgiwrap.service'
'LICENSE')
-md5sums=('be73d90df7c4442084463e2815fc213d'
+md5sums=('96d5f5a82b96f6eb7b4117fbab5e1e58'
'9fbb5b0e861ffea74e655143a4c1a8f9'
'71ea12f43aebca39f73ff2e0b684f361'
- 'fda6e50f609ede7c599caac8a7bb127a'
'5aee62c27b4308f25ab32f05da387366')
build() {
- cd "${srcdir}/gnosek-${pkgname}-${_gitrev}"
+ cd "${srcdir}/${pkgname}"
autoreconf --install
- ./configure --prefix=/usr
+ ./configure --prefix=/usr --mandir=/share/man
make
}
package() {
- cd "${srcdir}/gnosek-${pkgname}-${_gitrev}"
+ cd "${srcdir}/${pkgname}"
make DESTDIR="${pkgdir}" install
install -Dm0644 ../fcgiwrap.conf.d "${pkgdir}/etc/conf.d/${pkgname}"
install -Dm0755 ../fcgiwrap.rc.d "${pkgdir}/etc/rc.d/${pkgname}"
install -Dm0644 ../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
- install -Dm0644 "${srcdir}/fcgiwrap.service" "${pkgdir}/usr/lib/systemd/system/fcgiwrap.service"
}