blob: e4fe71294dbb96f2d125a239941d254b43f37b68 (
plain)
1 # Description: Utility for maintaining remote web sites via FTP or WebDAV
2 # URL: http://www.manyfish.co.uk/sitecopy/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: neon
5
6 name=sitecopy
7 version=0.16.6
8 release=3
9 source=(http://crux.s3.amazonaws.com/dist/$name-$version.tar.gz
10 $name-$version.patch)
11
12 build () {
13 cd $name-$version
14 patch -p1 -i $SRC/$name-$version.patch
15 autoconf
16 ./configure --prefix=/usr \
17 --mandir=/usr/man \
18 --with-neon=/usr \
19 --disable-nls \
20 --disable-debug
21 make
22 make DESTDIR=$PKG install
23 rm -r $PKG/usr/{doc,share,man/fr}
24 }
|