From mboxrd@z Thu Jan 1 00:00:00 1970 From: rennes Subject: [PATCH 2/3] gnu: Add libfilezilla. Date: Thu, 9 Feb 2017 10:36:17 -0600 Message-ID: <20170209163618.1759-3-rennes@openmailbox.org> References: <20170209163618.1759-1-rennes@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44152) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cbriM-0007N3-BA for guix-devel@gnu.org; Thu, 09 Feb 2017 11:36:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cbriL-0007g8-B6 for guix-devel@gnu.org; Thu, 09 Feb 2017 11:36:58 -0500 Received: from lb1.openmailbox.org ([5.79.108.160]:45362 helo=mail.openmailbox.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cbriL-0007fq-3H for guix-devel@gnu.org; Thu, 09 Feb 2017 11:36:57 -0500 In-Reply-To: <20170209163618.1759-1-rennes@openmailbox.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/ftp.scm (libfilezilla): New variable. --- gnu/packages/ftp.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/ftp.scm b/gnu/packages/ftp.scm index 7380fcfc3..0fef1b160 100644 --- a/gnu/packages/ftp.scm +++ b/gnu/packages/ftp.scm @@ -3,6 +3,7 @@ ;;; Copyright =C2=A9 2015 Andreas Enge ;;; Copyright =C2=A9 2015 Mark H Weaver ;;; Copyright =C2=A9 2016 Tobias Geerinckx-Rice +;;; Copyright =C2=A9 2017 Rene Saavedra ;;; ;;; This file is part of GNU Guix. ;;; @@ -26,6 +27,7 @@ #:use-module (guix packages) #:use-module (gnu packages) #:use-module (gnu packages autotools) + #:use-module (gnu packages check) =20 #:use-module (gnu packages gettext) #:use-module (gnu packages ncurses) #:use-module (gnu packages readline) @@ -159,3 +161,25 @@ maintaining a web page or other FTP archive. It syn= chronizes a set of local files to a remote server by performing uploads and remote deletes as required.") (license gpl2+))) + +(define-public libfilezilla + (package + (name "libfilezilla") + (version "0.9.0") + (source + (origin + (method url-fetch) + (uri (string-append "http://download.filezilla-project.org/" + name "/" name "-" version ".tar.bz2")) + (sha256 + (base32 + "0340v5xs48f28q2d16ldb9359dkzlhl4l449mgyv3qabnlz2pl21")))) + (build-system gnu-build-system) + (native-inputs + `(("cppunit" ,cppunit))) + (home-page "https://lib.filezilla-project.org") + (synopsis "Cross-platform C++ library used by Filezilla client") + (description + "This package offering some basic functionality to build high-perfo= rming, +platform-independent programs.") + (license gpl3+))) --=20 2.11.0