2008-11-01 18:31:26 +01:00
|
|
|
# Description: ftp client
|
|
|
|
# URL: http://filezilla-project.org
|
2009-01-10 14:30:03 +01:00
|
|
|
# Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl
|
2010-09-13 13:53:10 +02:00
|
|
|
# Depends on: wxgtk libidn gnutls xdg-utils tinyxml
|
2008-11-01 18:31:26 +01:00
|
|
|
|
|
|
|
name=filezilla
|
2011-11-29 21:47:27 +01:00
|
|
|
version=3.5.2
|
2008-11-01 18:31:26 +01:00
|
|
|
release=1
|
2011-11-29 21:47:27 +01:00
|
|
|
source=(http://downloads.sourceforge.net/project/$name/FileZilla_Client/$version/FileZilla_${version}_src.tar.bz2
|
|
|
|
gnutls-3.patch)
|
2008-11-01 18:31:26 +01:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2011-11-29 21:47:27 +01:00
|
|
|
# quickly stolen from arch people
|
|
|
|
patch -p1 -i ../gnutls-3.patch
|
2009-01-23 15:06:06 +01:00
|
|
|
./configure \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--disable-manualupdatecheck \
|
|
|
|
--disable-static \
|
2009-04-20 20:04:08 +02:00
|
|
|
--disable-locales \
|
2009-10-14 12:21:13 +02:00
|
|
|
--prefix=/usr \
|
|
|
|
--without-dbus
|
2008-11-01 18:31:26 +01:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/locale
|
|
|
|
}
|