1
0
Fork 0

Update so fastcgi works again, as per calrama:

https://aur.archlinux.org/account/calrama/
This commit is contained in:
Aaron Lindsay 2013-08-23 09:55:55 -04:00
parent 009fb95772
commit 9a12cd28ea
1 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,7 @@ pkgname=seafile
pkgver=1.8.1 pkgver=1.8.1
#The release number for the arch package, as fixes are added to the PKGBUILD, the release number will increase #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) # The description of the package, should be about 80 characters long (one line)
pkgdesc="Seafile is an open-source Dropbox replacement." pkgdesc="Seafile is an open-source Dropbox replacement."
@ -62,6 +62,7 @@ build () {
./configure --enable-server --enable-httpserver --prefix=/usr PYTHON=/usr/bin/python2 ./configure --enable-server --enable-httpserver --prefix=/usr PYTHON=/usr/bin/python2
make -j1 make -j1
make -C monitor make -C monitor
make -C python/seaserv
} }
package () { package () {
@ -69,4 +70,5 @@ package () {
cd "$srcdir/$pkgname-$pkgver" cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install make DESTDIR="$pkgdir/" install
make -C monitor DESTDIR="$pkgdir/" install make -C monitor DESTDIR="$pkgdir/" install
make -C python/seaserv DESTDIR="$pkgdir/" install
} }