forked from ports/contrib
26 lines
698 B
Plaintext
26 lines
698 B
Plaintext
# Description: ftp client
|
|
# URL: http://filezilla-project.org
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Depends on: libfilezilla libnotify libwebp wxgtk xdg-utils
|
|
|
|
name=filezilla
|
|
version=3.46.3
|
|
release=1
|
|
source=(https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--disable-manualupdatecheck \
|
|
--disable-autoupdatecheck \
|
|
--disable-locales \
|
|
--disable-static \
|
|
--with-pugixml=builtin \
|
|
--disable-dependency-tracking
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/share/locale
|
|
}
|