27 lines
765 B
Plaintext
27 lines
765 B
Plaintext
# Description: ftp client
|
|
# URL: http://filezilla-project.org
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Packager: Bartlomiej Palmowski, rotwang at crux dot org dot pl
|
|
# Depends on: wxgtk gnutls xdg-utils tinyxml
|
|
|
|
name=filezilla
|
|
version=3.9.0.5
|
|
release=1
|
|
source=(http://downloads.sourceforge.net/project/$name/FileZilla_Client/$version/FileZilla_${version}_src.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--disable-manualupdatecheck \
|
|
--disable-autoupdatecheck \
|
|
--disable-locales \
|
|
--disable-static \
|
|
--disable-dependency-tracking \
|
|
--without-dbus
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/share/locale
|
|
}
|