PTXdist Reference ================= Variables Reference ------------------- The following variables are provided by PTXdist to simplify creating rule files. Every developer should use these variables in every single line in the **rule file** to avoid any further adaption when external paths are changed. To get their content related to the current project, we can simply run a: .. parsed-literal:: $ ptxdist print PTXDIST_TOPDIR /usr/local/lib/ptxdist-\ |release| Replace the ``PTXDIST_TOPDIR`` with one of the other generic variables PTXdist provides. Global Variables ~~~~~~~~~~~~~~~~ ``PTXDIST_TOPDIR`` Points always to the installation directory of PTXdist. ``PTXDIST_WORKSPACE`` Everything that references ``PTXDIST_WORKSPACE`` will use the active projects’s folder. ``PTXDIST_SYSROOT_CROSS`` ``PTXDIST_SYSROOT_CROSS`` points to a directory tree all cross relevant executables, libraries and header files are installed to in the current project. All of the project’s packages built for the host to create data for the target are searching in this directory tree for their dependencies (executables, header and library files). Use ``$(PTXDIST_SYSROOT_CROSS)/bin`` to install executables, ``$(PTXDIST_SYSROOT_CROSS)/include`` for header files and ``$(PTXDIST_SYSROOT_CROSS)/lib`` for libraries. ``PTXDIST_SYSROOT_HOST`` ``PTXDIST_SYSROOT_HOST`` points to a directory tree all host relevant executables, libraries and header files are installed to. All project’s packages built for the host are searching in this directory tree for their dependencies (executables, header and library files). Use ``$(PTXDIST_SYSROOT_HOST)/bin`` to install executables, ``$(PTXDIST_SYSROOT_HOST)/include`` for header files and ``$(PTXDIST_SYSROOT_HOST)/lib`` for libraries. ``PTXDIST_SYSROOT_TARGET`` ``PTXDIST_SYSROOT_TARGET`` points to a directory tree all target relevant libraries and header files are installed to. All project’s packages built for the target are searching in this directory tree for their dependencies (header and library files). These files are for compile time only (for example to link a target executable against a target library), not for runtime! Use ``$(PTXDIST_SYSROOT_TARGET)/include`` for header files and ``$(PTXDIST_SYSROOT_TARGET)/lib`` for libraries. Other useful variables: ``CROSS_PATH`` Use to find cross tools. This path must be used to create anything that depends on the target’s architecture, but needs something running on the host to do the job. Examples: **Creating a UBI image from the target’s root filesystem** This will need a tool running on the host, but it will create data or code that runs on or is used on the target **Building a library for the target** If this library needs other resources to be built (other libraries) its ``configure`` finds the right information in this path. ``HOST_PATH`` Used to find host tools. This path must be used to create anything that not depends on the architecture. ``ROOTDIR`` ``ROOTDIR`` points to the root of the target’s root filesystem in the current project. Used in very rare cases (to create strange packages based on data in target’s root filesystem for example). ``PTXCONF_PLATFORM`` ``PTXCONF_PLATFORM`` expands to the name of the currently selected platform. This name is used in various file names and paths. ``PTXDIST_PLATFORMSUFFIX`` ``PTXDIST_PLATFORMSUFFIX`` expands to the name of the currently selected platform, but with a leading dot. This is used in various files PTXdist should search for. ``PTXDIST_PLATFORMCONFIGDIR`` ``PTXDIST_PLATFORMCONFIGDIR`` points to the directory tree of the currently selected platform. This path is used in various search functions. ``PTXDIST_PLATFORMDIR`` ``PTXDIST_PLATFORMDIR`` points to the directory build tree of the currently selected platform. Package Specific Variables ~~~~~~~~~~~~~~~~~~~~~~~~~~ For the following variables ```` is a placeholder for the package name. It is also the Kconfig symbol name (without the ``PTXCONF_`` prefix). Package Definition ^^^^^^^^^^^^^^^^^^ ```` This is the name of the package including version. For most packages, this is the name of the source archive (without suffix) and the source directory. PTXdist will search for patches in a directory with this name. This is usually defined as ``-$(_VERSION)``. This variable is required for most packages. The only exception are packages that only install some files in the targetinstall stage (e.g. from projectroot/). ``_VERSION`` The version of the package. It is used as the version for the ipk packages. As such, it is required for all packages that create such packages. Most target packages fall in this category. ``_MD5`` The md5 checksum of the source archive. PTXdist calculates the checksum before extracting the archive and will abort if does not match. Upstream project occasionally change the content of an archive without releasing a new version. This check helps to ensure that all developers work with the same source code. ``_SUFFIX`` The archive suffix without the leading '.', e.g. 'tar.gz' or 'zip'. This is only used locally to define ``_URL`` and ``_SOURCE``. ``_URL`` This is the download URL for the source archive. It is a space separated list of URLs. PTXdist will try each URL until it finds one that works. There are two main reasons to provide more than one URL: 1. Additional mirror(s) in case the main location is unavailable. 2. Some Projects move old versions into a separate directory when a new version is released. Providing both versions of the URL ensures that PTXdist still has a working URL after the next upstream release. URLs can have options. Options are appended to the URL separated by ';'. For normal downloads the following options are supported: ``no-check-certificate`` to indicate that SSL certificate checking should be disabled. ``no-proxy`` to disable any configured proxy. ``cookie:`` to specify a cookie that should be sent. Files in the local filesystem can be addressed with 'file://' URLs. In this case, the URL can also point to a directory. In this case ``_DIR`` will be a symlink to the specified directory. 'lndir://' can be used to create a shadow copy instead. For locations inside the BSP the URL should use ``$(PTXDIST_WORKSPACE)`` to define the correct absolute path. If no source archive is available, PTXdist can get the source from revision control systems. 'git' and 'svn' are currently supported. Note that this cannot be used to follow a branch! PTXdist will create the archive defined ``_SOURCE`` and use it if available. Git URLs must either start with 'git://' or end with '.git'. They have a mandatory ``tag=`` option. Svn URLs must start with 'svn://'. They have a mandatory ``rev=r`` option. ``_SOURCE`` The location of the downloaded source archive. There should be no reason to set this to anything other than ``$(SRCDIR)/$().$(_SUFFIX)``. For local URLs ('file://' or 'lndir://') ``_SOURCE`` must not be set. ``_DIR`` This is the directory where the source archive is extracted. In most cases this is set to ``$(BUILDDIR)/$()``. However, if two packages use the same source archive, then something else must be used to make sure that they use different directories. See the rules for 'gdb' and 'gdbserver' for an example. ``_LICENSE`` The license of the package. The SPDX license identifiers should be used here. Use ``proprietary`` for proprietary packages and ``ignore`` for packages without their own license, e.g. meta packages or packages that only install files from projectroot/. ``_LICENSE_FILES`` A space separated list of URLs of license text files. The URLs must be 'file://' URLs relative to ``_DIR``. Absolute URLs using ``$(PTXDIST_WORKSPACE)`` can be used in case the license text is missing in the upstream archive. Arguments are appended with ';' as separator. The ``md5=`` argument is mandatory. It defines the md5 checksum of the full license text. ``startline=;endline=`` can be used in case the specified file contains more than just the license text, e.g. if the license is in the header of a source file. For non ASCII or UTF-8 files the encoding can be specified with ``encoding=``. For most packages the variables described above are undefined by default. However, for cross and host packages these variables default to the value of the corresponding target package if it exists. ``_CONFIG`` This variable specifies a configuration file of some kind for the packages. For packages with ``_CONF_TOOL`` set to ``kconfig`` the variable must specify an absolute path to the kconfig file. For image packages that use genimage, PTXdist will look for ``config/images/$(_CONFIG)`` in the BSP and PTXdist in the usual search order. ``_STRIP_LEVEL`` When PTXdist extracts source archives, it will create ``_DIR`` first and then extracts the archive there. If ``_STRIP_LEVEL`` is set to 1 (the default) then PTXdist removes the first directory level defined inside the archive. For most packages that this is the same as just extracting the archive. However, this is useful for packages with badly named top-level directories or packages where the directory must be renamed to avoid collisions (e.g. gdbserver). The main use-case for ``_STRIP_LEVEL`` is to set it to 0 for packages without a top-level directory. In theory ``_STRIP_LEVEL`` could be set to 2 or more to remove more than one directory level. ``_BUILD_OOT`` If this is set to ``YES`` then PTXdist will build the package out of tree. This is only supported for autoconf, qmake and cmake packages. The default is ``YES`` for cmake packages and ``NO`` for everything else. It will use ``$(_DIR)-build`` as build directory. This is especially useful for 'file://' URLS that point to directories to keep the source tree free of build files. ``_SUBDIR`` This is a directory relative to ``_DIR``. If set, all build operations are executed in this directory instead. By default ``_SUBDIR`` is undefined so all operations are executed in the top-level directory. Build Environment for all Stages ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ``_PATH`` This variable defines the PATH used by all build stages. It is evaluated as is, so it must start with ``PATH=``. If undefined, PTXdist will use ``PATH=$(CROSS_PATH)`` for target packages ``PATH=$(HOST_PATH)`` for host packages and ``PATH=$(HOST_CROSS_PATH)`` for cross packages. It must be set by packages that use the variable locally in the make file or if more directories are added, e.g. to ``PATH=$(PTXDIST_SYSROOT_CROSS)/bin/qt5:$(CROSS_PATH)`` for packages that use qmake from Qt5. ``_CFLAGS``, ``_CPPFLAGS``, ``_LDFLAGS`` Compiler, preprocessor and linker are never called directly in PTXdist. Instead, wrapper scripts are called that expand the command line before calling the actual tool. These variables can be used to influence these wrappers. The specified flags are added to the command line when appropriate. In most cases this it the preferred way to add additional flags. Adding them via environment variables or ``make`` arguments can have unexpected side effects, such as as overwriting existing defaults. ``_WRAPPER_BLACKLIST`` PTXdist has several options in the platformconfig that inject options in the compiler command line. This is used, for example, to add hardening options or change the debug options. This can occasionally cause problems for packages that use the compiler in certain ways, such as the Linux kernel or various bootloaders. With this variable a package can disable individual options by setting it to a space separated list of the corresponding Kconfig symbols (without the ``PTXCONF_`` prefix). Prepare Stage ^^^^^^^^^^^^^ ``_CONF_ENV`` The environment for the prepare stage. If undefined, PTXdist will use ``$(CROSS_ENV)`` for target packages, ``$(HOST_ENV)`` for host packages and ``$(HOST_CROSS_ENV)`` for cross packages. It must be set by packages that use the variable locally in the make file or if extra variables are added. In this case the definition should start with the default value. ``_CONF_TOOL`` This variable defines what tool is used to configure the package in the prepare stage. Possible values are: - ``NO`` to do nothing in the prepare stage. - ``autoconf`` for packages that use autoconf - ``qmake`` for qmake based packages. Note: the required Qt version must be selected. - ``cmake`` for cmake based packages. Note ``HOST_CMAKE`` must be selected to ensure, that cmake is available for configuration. - ``kconfig`` for kconfig based packages. Note ``_CONFIG`` must be set as described above. - ``perl`` for perl modules. - ``python`` or ``python3`` for Python packages with a normal setup.py. ``_CONF_OPT`` This variable adds arguments to the command-line of the configuration tool. If undefined, PTXdist will use a default value that depends on the configuration tool of the package. This default value should also be used when adding additional options. The following defaults exist: - autoconf: ``$(CROSS_AUTOCONF_USR)``/``$(HOST_AUTOCONF)``/``$(HOST_CROSS_AUTOCONF)`` for target/host/cross packages. - cmake: ``$(CROSS_CMAKE_USR)``/``$(HOST_CMAKE_OPT)`` for target/host packages. Cross packages cannot be built with cmake - qmake: ``$(CROSS_QMAKE_OPT)`` for host packages. Host and cross packages cannot be built with qmake. All other configuration tools have no default options. This variable is ignored for kconfig and python/python3. Compile Stage ^^^^^^^^^^^^^ ``_MAKE_ENV`` This variables defines additional environment variables for the compile stage. In most cases this variable remains undefined because all necessary defines are picked up in the prepare stage. For python/python3 packages PTXdist will use the default value from ``_CONF_ENV``. For packages without configuration tool this must be set correctly, usually based on the ``_CONF_ENV`` default values. Install Stage ^^^^^^^^^^^^^ .. _reference_macros: Rule File Macro Reference ------------------------- Rules files in PTXdist are using macros to get things work. Its highly recommended to use these macros instead of doing something by ourself. Using these macros is portable and such easier to maintain in the case a project should be upgraded to a more recent PTXdist version. This chapter describes the predefined macros in PTXdist and their usage. Whenever one of these macros installs something to the target's root filesystem, it also accepts user and group IDs which are common in all filesystems Linux supports. These IDs can be given as numerical values and as text strings. In the case text strings are given PTXdist converts them into the coresponding numerical value based on the BSP local files :file:`passwd` and :file:`group`. If more than one file with these names are present in the BSP PTXdist follows its regular rules which one it prefers. Many paths shown here contains some parts in angle brackets. These have special meanings in this document. **** The name of a platform. Corresponds to the variable ``PTXCONF_PLATFORM`` **** The directory where the platform is defined. Corresponds to the variable ``PTXDIST_PLATFORMCONFIGDIR`` **** Concatenated directory name with a leading *platform-* and the name of the selected platform name, e.g. . If the name of the currently active platform is *foo*, the final directory name is *platform-foo*. Corresponds to the variable ``PTXDIST_PLATFORMDIR`` .. note:: The list of supported macros is not complete yet. targetinfo ~~~~~~~~~~ Usage: .. code-block:: make $(call targetinfo) Gives a feedback, what build *stage* is just started. Thats why it should always be the first call for each *stage*. For the package *foo* and the *compile stage* it will output: .. code-block:: bash -------------------- target: foo.compile -------------------- touch ------ Usage: .. code-block:: make $(call touch) Gives a feedback, what build *stage* is just finished. Thats why it should always be the last call for each *stage*. For the package *foo* and the *compile stage* it will output: .. code-block:: bash finished target foo.compile clean ~~~~~ Usage: .. code-block:: make $(call clean, ) Removes the given directory ```` .. _install_copy: install_copy ~~~~~~~~~~~~~ Usage: .. code-block:: make $(call install_copy, , , , , [, [, ]]) Installs given file or directory into: * the project's ``/root/`` * the project's ``/root-debug/`` * an ipkg/opkg packet in the project's ``/packages/`` Some of the parameters have fixed meanings: **** Name of the IPKG/OPKG the macro should work on **** User ID the file should use in the target's root filesystem **** Group ID the file should use in the target's root filesystem **** Permission (in an octal value) the file should use in the target's root filesystem The remaining parameters vary with the use case: The ```` parameter can be: * a directory path that should be created in the target's root filesystem. In this case the must be omitted. The given path must always start with a ``/`` and means the root of the target's filesystem. * an absolute path to a file that should be copied to the target's root filesystem. To avoid fixed paths, all packages are providing the _DIR variable. So, this parameter in our *foo* example package can be a ``$(FOO_DIR)/foo``. * a minus sign (``-``). PTXdist uses the parameter in this case to locate the file to copy from. This only works if the package uses the default *install* stage. Only in this case an additional folder in ``/packages`` will be created for the package and its files. For our *foo* example package this directory is ``/packages/foo-1.1.0``. The ```` parameter can be: * omitted if a directory in target's root filesystem should be created. For this case the directory to be created is in the parameter. * an absolute path and filename with its root in target's root filesysem. It must start with a slash (``//``). If also the parameter was given, the file can be renamed while copying. If the parameter was given as a minus sign (``-``) the is also used to locate the source. For our *foo* example package if we give as ``/usr/bin/foo``, PTXdist copies the file ``/packages/foo-1.1.0/usr/bin/foo`` The ```` is a complete optional parameter to prevent this macro from the regular stripping process it does on files. Most of the cases stripping debug information from files is intended. But some kind of files getting destroyed when this stripping happens to them. One example is a Linux kernel module. If it gets stripped, it can't be loaded into the kernel anymore. **full strip** fully strip the file while installing when this parameter is **y** or not given at all (default case). **partially strip** only strips real debug information from the file when this parameter is **k**. Useful to keep Linux kernel module loadable at run-time **no strip** preserve the file from being stripped when this parameter is one of the following: **0**, **n**, **no**, **N** or **NO**. Due to the complexity of this macro, here are some usage examples: Create a directory in the root filesystem: .. code-block:: make $(call install_copy, foo, 0, 0, 0755, /home/user-foo) Copy a file from the package build directory to the root filesystem: .. code-block:: make $(call install_copy, foo, 0, 0, 0755, $(FOO_DIR)/foo, /usr/bin/foo) Copy a file from the package build directory to the root filesystem and rename it: .. code-block:: make $(call install_copy, foo, 0, 0, 0755, $(FOO_DIR)/foo, /usr/bin/bar) Copy a file from the package install directory to the root filesystem: .. code-block:: make $(call install_copy, foo, 0, 0, 0755, -, /usr/bin/foo) install_tree ~~~~~~~~~~~~ Usage: .. code-block:: make $(call install_tree, , , , , ) Installs the whole directory tree with all files from the given directory into: * the project's ``/root/`` * the project's ``/root-debug/`` * an ipkg packet in the project's ``/packages/`` Some of the parameters have fixed meanings: **** Name of the IPKG/OPKG the macro should work on **** User ID the directories and files should use in the target's root filesystem or ``-`` to keep the UID from the source tree **** Group ID the directories and files should use in the target's root filesystem or ``-`` to keep the GID from the source tree **** This is the path to the tree of directories and files to be installed. It can be ``-`` to use the package directory of the current package instead **** The basename of the to-be-installed tree in the root filesystem Note: This installation macro * uses the same permission flags in the destination dir as found in the source dir. This is valid for directories and regular files * skips all directories with names like ``.svn``, ``.git``, ``.pc`` and ``CVS`` in the source directory Examples: Install the whole tree found in ``/home/jbe/foo`` to the root filesystem at location ``/usr/share/bar``. .. code-block:: make $(call install_tree, foo, 0, 0, /home/jbe/foo, /usr/share/bar) Install all files from the tree found in the current package FOO to the root filesystem at location ``/usr/share/bar``. .. code-block:: make $(call install_tree, foo, 0, 0, -, /usr/share/bar) If the current package is ``foo-1.0`` the base path for the directory tree will be ``$(PKGDIR)/foo-1.0/usr/share/bar``. install_alternative_tree ~~~~~~~~~~~~~~~~~~~~~~~~ Usage: .. code-block:: make $(call install_alternative_tree, , , , ) Installs the whole source directory tree with all files from the given directory into: * the project's ``/root/`` * the project's ``/root-debug/`` * an ipkg packet in the project's ``/packages/`` The ```` is used like in the ``install_alternative`` to let PTXdist search in the same directories and order for the given directory. Some of the parameters have fixed meanings: **** Name of the IPKG/OPKG the macro should work on **** User ID the directories and files should use in the target's root filesystem or ``-`` to keep the UID from the source **** Group ID the directories and files should use in the target's root filesystem or ``-`` to keep the GID from the source **** The basename of the to-be-installed tree in the root filesystem .. note:: This installation macro * uses the same permission flags in the destination dir as found in the source dir. This is valid for directories and regular files * skips all directories with names like ``.svn``, ``.git``, ``.pc`` and ``CVS`` in the source directory Examples: Install the whole tree found in project's ``projectroot/usr/share/bar`` to the root filesystem at location ``/usr/share/bar``. .. code-block:: make $(call install_alternative_tree, foo, 0, 0, /usr/share/bar) install_alternative ~~~~~~~~~~~~~~~~~~~ Usage: .. code-block:: make $(call install_alternative, , , , , ) Installs given files or directories into: * the project's ``/root/`` * the project's ``/root-debug/`` * an ipkg/opkg packet in the project's ``/packages/`` The base parameters and their meanings: **** Name of the IPKG/OPKG the macro should work on **** User ID the file should use in the target's root filesystem **** Group ID the file should use in the target's root filesystem **** Permission (in an octal value) the file should use in the target's root filesystem The parameter is meant as an absolute path and filename in target's root filesystem. PTXdist searches for the source of this file in: * the local project * in the used platform * PTXdist's install path * in the current package As this search algorithm is complex, here an example for the file ``/etc/foo`` in package ``FOO``. PTXdist will search for this file in the following order: * project's directory ``projectroot./etc/foo`` * project's directory ``projectroot/etc/foo.`` * platform's directory ``/projectroot/etc/foo`` * project's directory ``projectroot/etc/foo`` * ptxdist's directory ``generic/etc/foo`` * project's directory ``$(FOO_DIR)/etc/foo`` The generic rules are looking like the following: * ``$(PTXDIST_WORKSPACE)/projectroot.$(PTXDIST_PLATFORMSUFFIX)/etc/foo`` * ``$(PTXDIST_WORKSPACE)/projectroot/etc/foo$(PTXDIST_PLATFORMSUFFIX)`` * ``$(PTXDIST_PLATFORMCONFIGDIR)/projectroot/etc/foo`` * ``$(PTXDIST_WORKSPACE)/projectroot/etc/foo`` * ``$(PTXDIST_TOPDIR)/generic/etc/foo`` * ``$(FOO_DIR)/etc/foo`` Note: You can get the current values for the listed variables above via running PTXdist with the ``print`` parameter: .. code-block:: bash $ ptxdist print PTXDIST_PLATFORMSUFFIX install_link ~~~~~~~~~~~~ Usage: .. code-block:: make $(call install_link, , , ) Installs a symbolic link into: * the project's ``/root/`` * the project's ``/root-debug/`` * an ipkg/opkg packet in the project's ``/packages/`` The parameters and their meanings: **** Name of the IPKG/OPKG the macro should work on **** Path and name the link should point to. Note: This macro rejects absolute paths. If needed use relative paths instead. **** Path and name of the symbolic link. A few usage examples. Create a symbolic link as ``/usr/lib/libfoo.so`` pointing to ``libfoo.so.1.1.0`` in the same directory: .. code-block:: make $(call install_link, foo, libfoo.so.1.1.0, /usr/lib/libfoo.so) Create a symbolic link as ``/usr/bin/foo`` pointing to ``/bin/bar``: .. code-block:: make $(call install_link, foo, ../../bin/bar, /usr/bin/foo) .. _install_archive: install_archive ~~~~~~~~~~~~~~~ Usage: .. code-block:: make $(call install_archive, , , , , ) Installs archives content into: * the project's ``/root/`` * the project's ``/root-debug/`` * an ipkg/opkg packet in the project's ``/packages/`` All parameters have fixed meanings: **** Name of the IPKG/OPKG the macro should work on **** User ID all files and directory of the archive should use in the target's root filesystem. A ``-`` uses the file's/directory's UID in the archive **** Group ID the files and directories should use in the target's root filesystem. A ``-`` uses the file's/directory's GID in the archive **** Name of the archive to be used in this call. The given path and filename is used as is **** Base path component in the root filesystem the archive should be extracted to. Can be just ``/`` for root. install_glob ~~~~~~~~~~~~ Usage: .. code-block:: make $(call install_glob, , , , , , , [, ]) Installs parts of a directory tree with all files from the given directory into: * the project's ``/root/`` * the project's ``/root-debug/`` * an ipkg packet in the project's ``/packages/`` Some of the parameters have fixed meanings: **** Name of the IPKG/OPKG the macro should work on **** User ID the directories and files should use in the target's root filesystem or ``-`` to keep the UID from the source tree **** Group ID the directories and files should use in the target's root filesystem or ``-`` to keep the GID from the source tree **** This is the path to the tree of directories and files to be installed. It can be ``-`` to use the package directory of the current package instead **** The basename of the to-be-installed tree in the root filesystem **** A list of pathname patterns. All files or directories that match _any_ pattern in the list are installed. Note: the patterns must match the whole absolute path, e.g. ``*/foo``. An empty list is equivalent to a pattern that matches all files. **** Like ```` but any matching files or directories will not be installed. For directories, this includes the whole contents of the directory. Except for the pathname patterns, this command works like ``install_tree``. The ```` and ```` patterns are combined: Only files that match ```` and do not match ```` are installed. Examples: Install all shared libraries found in ``$(PKGDIR)/usr/lib/foo`` except libbar.so .. code-block:: make $(call install_glob, foo, 0, 0, -, /usr/lib/foo, *.so, */libbar.so) install_lib ~~~~~~~~~~~ Usage: .. code-block:: make $(call install_lib, , , , , ) Installs the shared library into the root filesystem. * the project's ``/root/`` * the project's ``/root-debug/`` * an ipkg/opkg packet in the project's ``/packages/`` The parameters and their meanings: **** Name of the IPKG/OPKG the macro should work on **** User ID the file should use in the target's root filesystem **** Group ID the directories and files should use in the target's root filesystem **** Permission (as an octal value) the library should use in the target's root filesystem (mostly 0644) **** Basename of the library without any extension and path The ``install_lib`` macro searches for the library at the most common directories ``/lib`` and ``/usr/lib``. And it searches always in the package's corresponding directory in ``/packages/``. It also handles all required links to make the library work at runtime. An example. Lets assume the package 'foo-1.0.0' has installed the library ``libfoo`` into its ``/packages/foo-1.0.0`` at: * the lib: ``/packages/foo-1.0.0/usr/lib/libfoo1.so.0.0.0`` * first link: ``/packages/foo-1.0.0/usr/lib/libfoo1.so.0`` * second link: ``/packages/foo-1.0.0/usr/lib/libfoo1.so`` To install this library and its corresponding links, the following line does the job: .. code-block:: make $(call install_lib, foo, 0, 0, 0644, libfoo1) Note: The package's install stage must be 'DESTDIR' aware to be able to make it install its content into the corresponding packages directory (in our example ``/packages/foo-1.0.0/`` here). .. _param_macros: ptx/endis ~~~~~~~~~ To convert the state (set/unset) of a variable into an ``enable/disable`` string use the ``ptx/endis`` macro. If the given is set this macro expands to the string ``enable``, if unset to ``disable`` instead. Usage: .. code-block:: make --$(call ptx/endis, )- An example: .. code-block:: make FOO_CONF_OPT += --$(call ptx/endis,FOO_VARIABLE)-something Depending on the state of FOO_VARIABLE this line results into .. code-block:: make FOO_CONF_OPT += --enable-something (if FOO_VARIABLE is set) FOO_CONF_OPT += --disable-something (if FOO_VARIABLE is unset) Refer ``ptx/disen`` for the opposite string expansion. ptx/disen ~~~~~~~~~ To convert the state (set/unset) of a variable into a ``disable/enable`` string use the ``ptx/disen`` macro. If the given is set this macro expands to the string ``disable``, if unset to ``enable`` instead. Usage: .. code-block:: make --$(call ptx/disen, )- An example: .. code-block:: make FOO_CONF_OPT += --$(call ptx/disen,FOO_VARIABLE)-something Depending on the state of FOO_VARIABLE this line results into .. code-block:: make FOO_CONF_OPT += --disable-something (if FOO_VARIABLE is set) FOO_CONF_OPT += --enable-something (if FOO_VARIABLE is unset) Refer ``ptx/endis`` for the opposite string expansion. ptx/wwo ~~~~~~~ To convert the state (set/unset) of a variable into a ``with/without`` string use the ``ptx/wwo`` macro. If the given is set this macro expands to the string ``with``, if unset to ``without`` instead. Usage: .. code-block:: make --$(call ptx/wwo, )- An example: .. code-block:: make FOO_CONF_OPT += --$(call ptx/wwo,FOO_VARIABLE)-something Depending on the state of FOO_VARIABLE this line results into .. code-block:: make FOO_CONF_OPT += --with-something (if FOO_VARIABLE is set) FOO_CONF_OPT += --without-something (if FOO_VARIABLE is unset) ptx/ifdef ~~~~~~~~~ To convert the state (set/unset) of a variable into one of two strings use the ``ptx/ifdef`` macro. If the given is set this macro expands to the first given string, if unset to the second given string. Usage: .. code-block:: make --with-something=$(call ptx/ifdef, , , : @$(call targetinfo) @$(call touch) Replace the by ``get``, ``extract``, ``prepare``, ``compile``, ``install`` or ``targetinstall``. .. _ptxdist_parameter_reference: PTXdist parameter reference --------------------------- PTXdist is a command line tool, which is basicly called as: .. code-block:: bash $ ptxdist [options] .. include:: ref_parameter.rst