File: build-recipe-arch

package info (click to toggle)
obs-build 20190710-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,660 kB
  • sloc: perl: 10,153; sh: 3,084; ansic: 284; makefile: 170
file content (63 lines) | stat: -rw-r--r-- 1,992 bytes parent folder | download
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
#
# Arch specific functions.
#
################################################################
#
# Copyright (c) 1995-2014 SUSE Linux Products 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_arch() {
    TOPDIR=/usr/src/packages
    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/ARCHPKGS"
    mkdir -p "$BUILD_ROOT/$TOPDIR/BUILD"
    chown -R "$ABUILD_UID:$ABUILD_GID" "$BUILD_ROOT$TOPDIR"
    cp -p "$MYSRCDIR"/* $BUILD_ROOT$TOPDIR/SOURCES/
    {
	echo 'source /etc/makepkg.conf'
	printf '%s=%s\n' \
	    BUILDDIR $TOPDIR/BUILD \
	    PKGDEST $TOPDIR/ARCHPKGS
    } > $BUILD_ROOT$TOPDIR/makepkg.conf
}

recipe_prepare_arch() {
    echo "Preparing sources..."
    if ! _arch_recipe_makepkg -so --skippgpcheck "2>&1" ">/dev/null" ; then
	cleanup_and_exit 1 "failed to prepare sources"
    fi
}

recipe_build_arch() {
    _arch_recipe_makepkg -ef < /dev/null && BUILD_SUCCEEDED=true
}

recipe_resultdirs_arch() {
    echo ARCHPKGS
}

recipe_cleanup_arch() {
    :
}

_arch_recipe_makepkg() {
    chroot $BUILD_ROOT su -lc "source /etc/profile; cd $TOPDIR/SOURCES && makepkg --config ../makepkg.conf $*" $BUILD_USER
}