aboutsummaryrefslogtreecommitdiff
path: root/contrib/cpt-manifest
blob: 86c22d6de6f25e0686b5d8b69bc4ff706e5e2d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh -ef
# Display all files owned by a package

## SYNOPSIS:
## .Nm
## .Op Ar package
## DESCRIPTION:
## .Nm
## prints the manifest of the given package to the standard output. If no
## package name is given,
## .Nm
## will use the name of the current directory for the package.

case "$1" in
    --help|-h)
        printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [pkg]"
        exit 0
        ;;
    '') set -- "${PWD##*/}"
esac

cpt-list "$1" >/dev/null
cat "$CPT_ROOT/var/db/cpt/installed/$1/manifest" 2>/dev/null