source: rtems-release/rtems-release-defaults

5
Last change on this file was fd5559f, checked in by Chris Johns <chrisj@…>, on 04/12/17 at 11:53:02

Fix the compression bugs. Clean if present.

  • Property mode set to 100755
File size: 2.2 KB
Line 
1#
2# RTEMS Tools Project (http://www.rtems.org/)
3# Copyright 2015-2016 Chris Johns (chrisj@rtems.org)
4# All rights reserved.
5#
6# This file is part of the RTEMS Tools package in 'rtems-tools'.
7#
8# Redistribution and use in source and binary forms, with or without
9# modification, are permitted provided that the following conditions are met:
10#
11# 1. Redistributions of source code must retain the above copyright notice,
12# this list of conditions and the following disclaimer.
13#
14# 2. Redistributions in binary form must reproduce the above copyright notice,
15# this list of conditions and the following disclaimer in the documentation
16# and/or other materials provided with the distribution.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28# POSSIBILITY OF SUCH DAMAGE.
29#
30
31#
32# RTEMS Release Defaults.
33#
34
35#
36# Stop on any error
37#
38set -e
39
40#
41# Keep the top where we start.
42#
43top=${PWD}
44
45#
46# The default checksum.
47#
48checksum=sha512
49
50#
51# Default compression and options plus file suffix.
52#
53comp="xz --threads=0"
54comp_ext=xz
55comp_tar=J
56
57#
58# Defaults.
59#
60rtems_examples=yes
61rtems_libbsd=yes
62rtems_docs=yes
63rtems_docs_build=sphinx
64rtems_release_notes=yes
65rtems_readme=README.txt.in
66rtems_readme_release_notes=
67rtems_release_conf=
68rtems_release_url=https://ftp.rtems.org/pub/rtems/releases
69
70#
71# The date stamp
72#
73now=$(date +"%d %B %Y")
74export now
75
76#
77# Version configuration. Overrides defaults.
78#
79if [ -f rtems-release-${version}-conf ]; then
80 rtems_release_conf=rtems-release-${version}-conf
81 . rtems-release-${version}-conf
82fi
Note: See TracBrowser for help on using the repository browser.