csync-git
[mirrors/ArchLinux-Packages.git] / lftpfs / PKGBUILD
1 # Contributor: Thomas Mudrunka <harvie@@email..cz>
2 # Maintainer: Thomas Mudrunka <harvie@@email..cz>
3 # You can also contact me on http://blog.harvie.cz/
4
5 pkgname=lftpfs
6 pkgver=0.4.2
7 pkgrel=2
8 pkgdesc="Read-only network filesystem with caching for smart mirroring of sites. (like Linux repositories) It's based on FUSE and LFTP client (supports FTP, HTTP, FISH, SFTP, HTTPS, FTPS protocols & works over proxies.) LftpFS is fork from unmaintained FuseFTP."
9 arch=('any')
10 license=('GPL')
11 url="http://lftpfs.sourceforge.net/"
12 makedepends=('perl')
13 depends=('lftp' 'perl' 'fuse' 'perl-fuse' 'perl-ipc-run')
14 source=(
15 "http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz"
16 )
17 md5sums=('aec22aa8107afe5a250c39330a1b08d2')
18
19
20 build() {
21 cd ${srcdir}/${pkgname}-${pkgver}/ || return 1
22
23 perl Makefile.PL || return 1
24 make || return 1
25 make DESTDIR=${pkgdir} install || return 1
26 }
This page took 0.286199 seconds and 4 git commands to generate.