/** * **libseccomp** - Interface to the Linux Kernel's syscall filtering mechanism * * @domain `github.com/seccomp/libseccomp` * @programs `scmp_sys_resolver` * @version `2.6.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/seccomp/libseccomp` * @buildDependencies `gnu.org/libtool`, `gnu.org/gperf` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomseccomplibseccomp * console.log(pkg.name) // "libseccomp" * console.log(pkg.description) // "Interface to the Linux Kernel's syscall filteri..." * console.log(pkg.programs) // ["scmp_sys_resolver"] * console.log(pkg.versions[0]) // "2.6.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/seccomp/libseccomp.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libseccompPackage: { /** * The display name of this package. */ name: 'libseccomp'; /** * The canonical domain name for this package. */ domain: 'github.com/seccomp/libseccomp'; /** * Brief description of what this package does. */ description: 'Interface to the Linux Kernel\'s syscall filtering mechanism'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/seccomp/libseccomp/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/seccomp/libseccomp'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/seccomp/libseccomp'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/seccomp/libseccomp -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/seccomp/libseccomp'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['scmp_sys_resolver']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/libtool', 'gnu.org/gperf']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.6.0', '2.5.6', '2.5.5']; aliases: readonly [] }; export type LibseccompPackage = typeof libseccompPackage