contrib/filezilla/Pkgfile

26 lines
685 B
Plaintext
Raw Normal View History

2008-11-01 18:31:26 +01:00
# Description: ftp client
# URL: http://filezilla-project.org
2014-05-22 12:17:45 +02:00
# Maintainer: Thomas Penteker, tek at serverop dot de
2019-10-05 07:35:50 +02:00
# Depends on: libfilezilla libidn2 libnotify libwebp
2008-11-01 18:31:26 +01:00
name=filezilla
2019-10-05 07:35:50 +02:00
version=3.45.1
2008-11-01 18:31:26 +01:00
release=1
2019-10-05 07:35:50 +02:00
source=(https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2)
2008-11-01 18:31:26 +01:00
build() {
cd $name-$version
2009-01-23 15:06:06 +01:00
./configure \
2013-08-10 19:06:48 +02:00
--prefix=/usr \
2009-01-23 15:06:06 +01:00
--mandir=/usr/man \
--disable-manualupdatecheck \
2013-08-10 19:06:48 +02:00
--disable-autoupdatecheck \
2009-04-20 20:04:08 +02:00
--disable-locales \
2013-08-10 19:06:48 +02:00
--disable-static \
2019-10-05 07:35:50 +02:00
--with-pugixml=builtin \
--disable-dependency-tracking
2014-05-22 12:17:45 +02:00
make
2008-11-01 18:31:26 +01:00
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/locale
}