#Packager: Richard Lapointe pkgname=filezilla pkgver=3.16.1 pkgrel=1rl source=("http://sourceforge.net/projects/filezilla/files/FileZilla_Client/3.16.1/FileZilla_3.16.1_src.tar.bz2") sourcetemplate=http://people.salixos.org/laprjns/$pkgname/$pkgver/ docs=("readme" "install" "copying" "ChangeLog" "authors" "todo") url=http://filezilla-project.org/ slackdesc=\ ( #|-----handy-ruler----------------------------------------------| "filezilla (the free FTP solution)" "FileZilla is a fast and reliable cross-platform FTP, FTPS, and" "SFTP client with lots of useful features and an intuitive user" "interface." "http://filezilla-project.org/" ) build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --mandir=/usr/man \ --disable-static \ --with-pugixml=builtin \ -disable-manualupdatecheck \ --disable-autoupdatecheck \ --build=$arch-slackware-linux || return 1 make || return 1 make install DESTDIR=$startdir/pkg mkdir -p $startdir/pkg/usr/share/icons/hicolor/32x32/apps mkdir -p $startdir/pkg/usr/share/icons/hicolor/48x48/apps cp $startdir/src/$pkgname-$pkgver/src/interface/resources/32x32/filezilla.png $startdir/pkg/usr/share/icons/hicolor/32x32/apps cp $startdir/src/$pkgname-$pkgver/src/interface/resources/48x48/filezilla.png $startdir/pkg/usr/share/icons/hicolor/48x48/apps }