all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: swedebugia <swedebugia@riseup.net>
To: Pierre Neidhardt <mail@ambrevar.xyz>, Timothy Sample <samplet@ngyro.com>
Cc: Guix-devel <guix-devel@gnu.org>
Subject: Re: Packaging Jami (ex GNU Ring)
Date: Thu, 10 Jan 2019 06:41:57 +0100	[thread overview]
Message-ID: <7d85f03f-96c3-11c6-92a4-00aaa893f6a8@riseup.net> (raw)
In-Reply-To: <47E030C8-D2FD-4939-A2F2-C7C4EF068FC8@pretty.Easy.privacy>

On 2019-01-10 05:17, swedebugia wrote:
> Pierre Neidhardt <mail@ambrevar.xyz> skrev: (9 januari 2019 19:14:38 CET)
> 
>     Jami is made of 3 packages and might drag in 2-3 packages that
>     so far are not used by any other package.
> 
>     General question: where should those packages go?
> 
>     - ring.scm
>     - jami.scm
>     - telephony.scm
> 
>     ?
> 
> 
> Hi Pierre.
> I think we should put this into a new file voip.scm.
> 
> I started packaging qual (qual.net) yesterday as a challenge and it 
> bundles pjsip aka pjproject.
> 
> Would you like my definition of it so far?
Here it comes:
(define-public pjproject
   (package
     (name "pjproject")
     (version "2.8")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "http://www.pjsip.org/release/"
                            version "/" name "-"  version ".tar.gz"))
        (file-name (string-append name "-" version))
        (sha256
         (base32
          "0ybg0113rp3fk49rm2v0pcgqb28h3dv1pdy9594w2ggiz7bhngah"))))
     (build-system gnu-build-system)
     (native-inputs
      ;; TODO pulls in qtbase. Avoid that if possible as this is a library.
       ;; * opencore-amr (for the AMR-NB decoder and encoder and the
       ;;   AMR-WB decoder) <http://sourceforge.net/projects/opencore-amr/>
       ;;("opencore-amr" ,opencore-amr)
        ;; * libvo-amrwbenc
      `(("python" ,python)
        ("sdl2" ,sdl2)
        ("gnutls" ,gnutls)
        ("openssl" ,openssl)
        ("libvpx" ,libvpx)
        ("speex" ,speex)
        ("opus" ,opus)
        ("ffmpeg" ,ffmpeg)
        ("alsa-lib" ,alsa-lib)
        ("v4l-utils" ,v4l-utils)
        ("pkg-config" ,pkg-config)
        ("util-linux" ,util-linux))) ;uuid
      ;; Configure checks for SILK decoder. It is old and superseeded by 
OPUS so we ignore it.
     (arguments
      '(#:configure-flags '("") ; None needed, it finds everything 
automatically :D
        #:tests? #f)) ; No tests.
     (home-page "http://www.pjsip.org")
     (synopsis "")
     (description "")
     (license license:gpl2+)))

-- 
Cheers Swedebugia

  reply	other threads:[~2019-01-10  5:35 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-09  8:50 Packaging Jami (ex GNU Ring) Pierre Neidhardt
2019-01-09  8:58 ` Gábor Boskovits
2019-01-09  9:03   ` Pierre Neidhardt
2019-01-09 15:03 ` Timothy Sample
2019-01-09 16:26   ` Pierre Neidhardt
2019-01-09 17:57     ` Timothy Sample
2019-01-09 18:10       ` Pierre Neidhardt
2019-01-09 18:14         ` Pierre Neidhardt
2019-01-09 19:18           ` Leo Famulari
2019-01-09 20:05             ` Pierre Neidhardt
2019-01-10 12:18               ` Maxim Cournoyer
2019-01-10 12:55                 ` Pierre Neidhardt
2019-01-10  4:17           ` swedebugia
2019-01-10  5:41             ` swedebugia [this message]
2019-01-10  9:08               ` Pierre Neidhardt
2019-01-10  9:10               ` Pierre Neidhardt
2019-01-10 13:13                 ` swedebugia
2019-01-10 13:19                   ` Pierre Neidhardt
2019-01-10 20:13                     ` Pierre Neidhardt
2019-01-11 15:02                     ` swedebugia
2019-01-11 17:43                       ` Pierre Neidhardt
2019-01-11 18:32                         ` Pierre Neidhardt
2019-01-11 18:53                           ` Pierre Neidhardt
2019-01-11 20:10                             ` Pierre Neidhardt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7d85f03f-96c3-11c6-92a4-00aaa893f6a8@riseup.net \
    --to=swedebugia@riseup.net \
    --cc=guix-devel@gnu.org \
    --cc=mail@ambrevar.xyz \
    --cc=samplet@ngyro.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.