From 9a12cd28eacf4cff75db2a7f15cf0f33468cd8ff Mon Sep 17 00:00:00 2001 From: Aaron Lindsay Date: Fri, 23 Aug 2013 09:55:55 -0400 Subject: [PATCH] Update so fastcgi works again, as per calrama: https://aur.archlinux.org/account/calrama/ --- PKGBUILD | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index 2d853c3..227fbda 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -7,7 +7,7 @@ pkgname=seafile pkgver=1.8.1 #The release number for the arch package, as fixes are added to the PKGBUILD, the release number will increase -pkgrel=2 +pkgrel=3 # The description of the package, should be about 80 characters long (one line) pkgdesc="Seafile is an open-source Dropbox replacement." @@ -62,6 +62,7 @@ build () { ./configure --enable-server --enable-httpserver --prefix=/usr PYTHON=/usr/bin/python2 make -j1 make -C monitor + make -C python/seaserv } package () { @@ -69,4 +70,5 @@ package () { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir/" install make -C monitor DESTDIR="$pkgdir/" install + make -C python/seaserv DESTDIR="$pkgdir/" install }