guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 2/3] gnu: Add libfilezilla.


From: Maxim Cournoyer
Subject: Re: [PATCH 2/3] gnu: Add libfilezilla.
Date: Sun, 12 Feb 2017 18:26:59 -0800
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux)

Hi,

rennes <address@hidden> writes:

> * 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 © 2015 Andreas Enge <address@hidden>
>  ;;; Copyright © 2015 Mark H Weaver <address@hidden>
>  ;;; Copyright © 2016 Tobias Geerinckx-Rice <address@hidden>
> +;;; Copyright © 2017 Rene Saavedra <address@hidden>
>  ;;;
>  ;;; 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)  
>    #: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 
> synchronizes 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-performing,
> +platform-independent programs.")

s/offering/offers/ or s/offering/provides/

> +    (license gpl3+)))

Only license information I could find is the COPYING file which is
GPLv2. I think gpl2+ would be more appropriate.

Maxim



reply via email to

[Prev in Thread] Current Thread [Next in Thread]