gnu: libnet: Update to 1.2.

* gnu/packages/networking.scm (libnet): Update to 1.2.
[source]: Switch to URL-FETCH.
[arguments]: Remove chdir phase.
[native-inputs]: Remove AUTOCONF, AUTOMAKE, and LIBTOOL.  Add PERL.
This commit is contained in:
Marius Bakke 2020-06-13 18:58:28 +02:00
parent dd61cd85f1
commit 41cb238281
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -2121,32 +2121,27 @@ (define-public bmon
(define-public libnet
(package
(name "libnet")
(version "1.2-rc3")
(version "1.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/sam-github/libnet")
(commit (string-append "libnet-" version))))
(file-name (git-file-name name version))
(method url-fetch)
(uri (string-append "https://github.com/libnet/libnet/releases/download"
"/v" version "/libnet-" version ".tar.gz"))
(sha256
(base32
"0cy8w4g5rv963v4p6iq3333kxgdddx2lywp70xf62553a25xhhs4"))))
"19ys9vxk6fg70yzzdxsphfr0rwzgxxhr9b3ykhpg7rfray0qd96a"))))
(build-system gnu-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'chdir
(lambda _ (chdir "libnet") #t))
(add-before 'build 'build-doc
(lambda* (#:key make-flags #:allow-other-keys)
(apply invoke "make" "-C" "doc" "doc"
make-flags))))))
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)
("libtool" ,libtool)
("doxygen" ,doxygen)))
`(;; To build the documentation, Doxygen and Perl is required.
("doxygen" ,doxygen)
("perl" ,perl)))
(home-page "https://sourceforge.net/projects/libnet-dev/")
(synopsis "Framework for low-level network packet construction")
(description