aboutsummaryrefslogtreecommitdiff
path: root/example/compressed_data/compressed_data.parts
blob: b2637631c0ffca2f0565b44f597c0d07a1300beb (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
############################################################################
# Copyright 2016 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
############################################################################

Import('*')

# Normal stuff that all Parts should have
env.PartName("sample_compressed_data")

#files
data_files = Pattern(src_dir='.',
                     includes=[
                         'grprl_empty.bin',
                         'README.md',
                         'groupa/privrl.bin',
                         'groupa/pubkey.bin',
                         'groupa/sigrl.bin',
                         'groupa/privrl_empty.bin',
                         'groupa/sigrl_empty.bin',
                         'groupa/member0/mprivkey.dat',
                         'groupa/member1/mprivkey.dat',
                         'groupa/privrevokedmember0/mprivkey.dat',
                         'groupa/privrevokedmember1/mprivkey.dat',
                         'groupa/privrevokedmember2/mprivkey.dat',
                         'groupa/sigrevokedmember0/mprivkey.dat',
                         'groupa/sigrevokedmember1/mprivkey.dat',
                         'groupa/sigrevokedmember2/mprivkey.dat',
                         'groupb/privrl.bin',
                         'groupb/pubkey.bin',
                         'groupb/sigrl.bin',
                         'groupb/privrl_empty.bin',
                         'groupb/sigrl_empty.bin',
                         'groupb/member0/mprivkey.dat',
                         'groupb/privrevokedmember0/mprivkey.dat',
                         'groupb/sigrevokedmember0/mprivkey.dat',
                     ],
                     recursive=True)

sample_default_files = Pattern(src_dir='.',
                               includes=[
                                   'mprivkey.dat',
                                   'pubkey.bin',
                                   'cacert.bin',
                                   'grprl.bin',
                                   'privrl.bin',
                                   'sigrl.bin',
                               ],
                               recursive=True)

part_file = ['compressed_data.parts']

if 'install_package' in env['MODE']:
    env.InstallTopLevel(data_files, sub_dir='example/compressed_data')
    env.InstallTopLevel(part_file, sub_dir='example/compressed_data')
    env.InstallTopLevel(sample_default_files, sub_dir='example/compressed_data')
else:
    env.InstallData(data_files,
                    sub_dir='compressed_data',
                    no_pkg=False)
    env.InstallTopLevel(sample_default_files, sub_dir='compressed_example')