diff options
author | shuai.fu <shuai01.fu@samsung.com> | 2017-04-22 13:43:02 +0800 |
---|---|---|
committer | shuai.fu <shuai01.fu@samsung.com> | 2017-04-22 13:44:05 +0800 |
commit | 794c348d0165d1406fd603d958bcbfc1fe62fa49 (patch) | |
tree | 7a54881bcad7dcc862eec79ada03b9e3500909c0 /build-recipe-debbuild | |
parent | e3da5fcdb300a12c57e4b0828f9fcc50140f48fd (diff) | |
download | build-794c348d0165d1406fd603d958bcbfc1fe62fa49.tar.gz build-794c348d0165d1406fd603d958bcbfc1fe62fa49.tar.bz2 build-794c348d0165d1406fd603d958bcbfc1fe62fa49.zip |
Update to upstream 20160629
Change-Id: Idc31c269aec94e852b30885dee65a827b318b7a3
Signed-off-by: shuai.fu <shuai01.fu@samsung.com>
Diffstat (limited to 'build-recipe-debbuild')
-rw-r--r-- | build-recipe-debbuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/build-recipe-debbuild b/build-recipe-debbuild new file mode 100644 index 0000000..6065fd2 --- /dev/null +++ b/build-recipe-debbuild @@ -0,0 +1,53 @@ +# +# debbuild specific functions. +# +################################################################ +# +# Copyright (c) 2015 SUSE Linux GmbH +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 or 3 as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program (see the file COPYING); if not, write to the +# Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################################ + +recipe_setup_debbuild() { + TOPDIR=`chroot $BUILD_ROOT su -c "debbuild --eval '%_topdir'" - $BUILD_USER` + if test -z "$TOPDIR"; then + echo "Error: TOPDIR empty" + cleanup_and_exit 1 + fi + test "$DO_INIT_TOPDIR" = false || rm -rf "$BUILD_ROOT$TOPDIR" + mkdir -p "$BUILD_ROOT$TOPDIR" + mkdir -p "$BUILD_ROOT$TOPDIR/OTHER" + mkdir -p "$BUILD_ROOT$TOPDIR/SOURCES" + mkdir -p "$BUILD_ROOT$TOPDIR/DEBS" + mkdir -p "$BUILD_ROOT$TOPDIR/SDEBS" + mkdir -p "$BUILD_ROOT$TOPDIR/BUILD" + test -e "$BUILD_ROOT$TOPDIR/SPECS" || ln -s SOURCES "$BUILD_ROOT$TOPDIR/SPECS" + chown -R "$ABUILD_UID:$ABUILD_GID" "$BUILD_ROOT$TOPDIR" + cp -p "$MYSRCDIR"/* $BUILD_ROOT$TOPDIR/SOURCES/ +} + +recipe_prepare_debbuild() { + recipe_prepare_spec "$@" +} + +recipe_build_debbuild() { + recipe_build_spec "$@" +} + +recipe_resultdirs_debbuild() { + echo DEBS SDEBS +} + |