summaryrefslogtreecommitdiff
path: root/community/yaws/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/yaws/PKGBUILD')
-rw-r--r--community/yaws/PKGBUILD13
1 files changed, 7 insertions, 6 deletions
diff --git a/community/yaws/PKGBUILD b/community/yaws/PKGBUILD
index 3a5de89fa..47f65c69c 100644
--- a/community/yaws/PKGBUILD
+++ b/community/yaws/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 80743 2012-12-01 19:51:02Z arodseth $
+# $Id: PKGBUILD 82428 2013-01-17 13:32:57Z arodseth $
# Maintainer: Vesa Kaihlavirta
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Patrick Smits <mail@patricksmits.net>
pkgname=yaws
pkgver=1.95
-pkgrel=3
+pkgrel=4
pkgdesc='Yet Another Web Server, pure Erlang HTTP server/framework'
arch=('x86_64' 'i686')
url='http://yaws.hyber.org/'
@@ -14,18 +14,19 @@ depends=('pam' 'erlang')
backup=('etc/yaws/yaws.conf')
options=('!emptydirs')
install=$pkgname.install
+optdepends=('erlang-nox: erlang without X')
source=("http://yaws.hyber.org/download/$pkgname-$pkgver.tar.gz"
"$pkgname.service")
sha256sums=('e4efae836561f5e8a1324a5c9ab63fb82468e9dc93dc95cb4cb6248ab6b95406'
- 'cce672e0bc73f536186bdbb8ac139d8000db4bd67f5fdeff84fdc4b4f8bd84f9')
+ '3f8347add6e3741e77f7bb9ba6b31feb1c878e2e58ecf19063891e801fa24698')
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
- for file in www/cgi.yaws www/cgi-bin/foo.py; do
- # python2 fix
- sed -i '0,/on/s//on2/' "$file"
+ # python2 fix
+ for file in cgi.yaws cgi-bin/foo.py; do
+ sed -i '0,/on/s//on2/' "www/$file"
done
make
}