summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/apple-libuuid/package.py
blob: 4c7526d611853799d8186956d284d06f724a3f8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Copyright 2013-2023 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.package import *


class AppleLibuuid(BundlePackage):
    """Placeholder package for Apple's analogue to non-GNU libuuid"""

    homepage = "https://opensource.apple.com/tarballs/Libsystem/"

    version("1353.100.2")

    provides("uuid")

    # Only supported on 'platform=darwin'
    conflicts("platform=linux")
    conflicts("platform=cray")

    @property
    def libs(self):
        """Export the Apple libuuid library.

        According to https://bugs.freedesktop.org/show_bug.cgi?id=105366,
        libuuid is provided as part of libsystem_c. The Apple libsystem_c
        library cannot be linked to directly using an absolute path; doing so
        will cause the linker to throw an error 'cannot link directly with
        /usr/lib/system/libsystem_c.dylib' and the linker will suggest linking
        with System.framework instead. Linking to this framework is equivalent
        to linking with libSystem.dylib, which can be confirmed on a macOS
        system by executing at a terminal the command `ls -l
        /System/Library/Frameworks/System.Framework` -- the file "System" is a
        symlink to `/usr/lib/libSystem.B.dylib`, and `/usr/lib/libSystem.dylib`
        also symlinks to this file. Running `otool -L /usr/lib/libSystem.dylib`
        confirms that it will link dynamically to
        `/usr/lib/system/libsystem_c.dylib`."""

        return LibraryList("/usr/lib/libSystem.dylib")

    @property
    def headers(self):
        """Export the Apple libuuid header."""
        return HeaderList(self.prefix.include.uuid.join("uuid.h"))