X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=package.sh;fp=package.sh;h=c4624c61350d1121015833de98548dfe7a6003d9;hb=cc9244cd1baddc6f3ef96bbec5662239afc9f3c2;hp=0000000000000000000000000000000000000000;hpb=337435cd4bf0c138f261628e8f32675c9b161602;p=ric-plt%2Fsdl.git diff --git a/package.sh b/package.sh new file mode 100755 index 0000000..c4624c6 --- /dev/null +++ b/package.sh @@ -0,0 +1,83 @@ +#!/bin/bash +# +# Copyright (c) 2019 AT&T Intellectual Property. +# Copyright (c) 2018-2019 Nokia. +# +# 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. + +set -e + +if [ $# -eq 0 ] +then + echo "Generate a binary package" + echo "Usage: $0 [--target-dir ] [--skip-config] target..." + echo "Where possible targets are debian and rpm" + exit 1 +fi + +SKIP_CONF=0 +BUILD_RPM=0 +BUILD_DEB=0 +SKIP_TEST=0 +TARGET_DIR=/tmp + +for i in "$@" +do + case "$i" in + --target-dir) + shift + TARGET_DIR=$i + ;; + --skip-config) + SKIP_CONF=1 + ;; + --skip-test) + SKIP_TEST=1 + ;; + rpm) + BUILD_RPM=1 + shift + ;; + debian) + BUILD_DEB=1 + ;; + *) + echo "Unknown argument $1" + exit 1 + ;; + esac +done + +if [ $SKIP_CONF -eq 0 ] +then + ./autogen.sh && ./configure +fi + +if [ $BUILD_RPM -ne 0 ] +then + if [ $SKIP_TEST ] + then + TESTOPT=--nocheck + fi + rpmbuild --nodeps $TESTOPT -bb rpm/sdl.spec --define="_sourcedir $PWD" --define="_builddir $PWD" --define="_rpmdir .." + cp ../x86_64/*.rpm "$TARGET_DIR" +fi + +if [ $BUILD_DEB -ne 0 ] +then + if [ $SKIP_TEST -eq 1 ] + then + export DEB_BUILD_OPTIONS="nocheck noddebs" + fi + debuild -b -us -uc +fi