diff options
author | Isaac Whitfield <iw@whitfin.io> | 2019-03-06 01:10:02 -0800 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2019-03-06 10:10:02 +0100 |
commit | 160536814820ff71070a8bea723a2bcbe8b14d55 (patch) | |
tree | 938a4ae4ba76c6626658e0fb72776e25f8adf971 | |
parent | c5573e660cce18bb3a4674dca48632ca0673ab87 (diff) | |
download | spack-160536814820ff71070a8bea723a2bcbe8b14d55.tar.gz spack-160536814820ff71070a8bea723a2bcbe8b14d55.tar.bz2 spack-160536814820ff71070a8bea723a2bcbe8b14d55.tar.xz spack-160536814820ff71070a8bea723a2bcbe8b14d55.zip |
libusbmuxd: new package (#10726)
-rw-r--r-- | var/spack/repos/builtin/packages/libusbmuxd/package.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libusbmuxd/package.py b/var/spack/repos/builtin/packages/libusbmuxd/package.py new file mode 100644 index 0000000000..46c852b3fd --- /dev/null +++ b/var/spack/repos/builtin/packages/libusbmuxd/package.py @@ -0,0 +1,30 @@ +# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class Libusbmuxd(AutotoolsPackage): + """A client library to multiplex connections from and to iOS devices.""" + + homepage = "https://www.libimobiledevice.org/" + url = "https://www.libimobiledevice.org/downloads/libusbmuxd-1.0.10.tar.bz2" + git = "https://git.libimobiledevice.org/libusbmuxd.git" + + version('master', branch='master') + version('1.0.10', sha256='1aa21391265d2284ac3ccb7cf278126d10d354878589905b35e8102104fec9f2') + version('1.0.9', sha256='2e3f708a3df30ad7832d2d2389eeb29f68f4e4488a42a20149cc99f4f9223dfc') + + depends_on('autoconf', type='build', when='@master') + depends_on('automake', type='build', when='@master') + depends_on('libtool', type='build', when='@master') + depends_on('pkg-config', type='build') + depends_on('libplist') + + def configure_args(self): + return [ + '--disable-dependency-tracking', + '--disable-silent-rules' + ] |