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
|
#!/usr/bin/env python3
# pass audit - Password Store Extension (https://www.passwordstore.org/)
# Copyright (C) 2017-2022 Alexandre PUJOL <alexandre@pujol.io>.
import os
import sys
from pathlib import Path
from setuptools import setup
share = Path(sys.prefix, 'share')
base = '/usr'
if os.uname().sysname == 'Darwin':
base = '/usr/local'
lib = Path(base, 'lib', 'password-store', 'extensions')
if '--user' in sys.argv:
if 'PASSWORD_STORE_EXTENSIONS_DIR' in os.environ:
lib = Path(os.environ['PASSWORD_STORE_EXTENSIONS_DIR'])
else:
lib = Path.home() / '.password-store' / '.extensions'
if 'XDG_DATA_HOME' in os.environ:
share = Path(os.environ['XDG_DATA_HOME'])
else:
share = Path.home() / '.local' / 'share'
setup(
data_files=[
(str(share / 'man' / 'man1'), [
'share/man/man1/pass-audit.1'
]),
(str(share / 'bash-completion' / 'completions'), [
'share/bash-completion/completions/pass-audit'
]),
(str(share / 'zsh' / 'site-functions'), [
'share/zsh/site-functions/_pass-audit'
]),
(str(lib), ["audit.bash"]),
],
)
|