csync-git
[mirrors/ArchLinux-Packages.git] / lftpfs / PKGBUILD
CommitLineData
209feeb0
H
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
5pkgname=lftpfs
6pkgver=0.4.2
7pkgrel=2
8pkgdesc="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."
9arch=('any')
10license=('GPL')
11url="http://lftpfs.sourceforge.net/"
12makedepends=('perl')
13depends=('lftp' 'perl' 'fuse' 'perl-fuse' 'perl-ipc-run')
14source=(
15 "http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz"
16)
17md5sums=('aec22aa8107afe5a250c39330a1b08d2')
18
19
20build() {
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.108108 seconds and 4 git commands to generate.