Skip to content

Commit 5c89da4

Browse files
committed
added license headers and renamed setup to builder
1 parent 42317c7 commit 5c89da4

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

setup.sh renamed to builder.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
#!/bin/bash
22
# vim: noai:ts=4:sw=4
33

4+
# Copyright 2013 Jon Allen ([email protected])
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
#
18+
# builder.sh
419
# this is the main script for controlling the build environment and such
20+
521
source configuration
622

723
if [ 'clean' == "$1" ]; then

configuration

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
# this file contains the configuration variables for the main script
22
# vim: noai:ts=4:sw=4
33

4+
# Copyright 2013 Jon Allen ([email protected])
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
18+
# configuration
19+
# this is a shell script meant to be sourced by builder.sh to provide
20+
# configuration options for the package
21+
422
# basically our working directory
523
BASE_DIR=`pwd`
624

0 commit comments

Comments
 (0)