From: mpmc Date: Mon, 1 Jul 2019 06:37:30 +0000 (+0100) Subject: autobuild: add build target for raspbian-buster X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=5d112de19c2ddfde470c647686e44a42c3e95cb4;p=thirdparty%2Ftvheadend.git autobuild: add build target for raspbian-buster --- diff --git a/.doozer.json b/.doozer.json index 7ca2a3189..69803f62d 100644 --- a/.doozer.json +++ b/.doozer.json @@ -497,6 +497,33 @@ "support/bintray.py publish filelist.txt" ] }, + "raspbian-buster": { + "buildenv": "raspbian-buster", + "builddeps": [ + "cmake", + "git", + "build-essential", + "pkg-config", + "gettext", + "libavahi-client-dev", + "libssl-dev", + "zlib1g-dev", + "wget", + "bzip2", + "git-core", + "liburiparser-dev", + "libpcre2-dev", + "libdvbcsa-dev", + "python", + "python-requests", + "debhelper", + "ccache" + ], + "buildcmd": [ + "AUTOBUILD_CONFIGURE_EXTRA=--enable-ccache\\ --enable-hdhomerun_static\\ --disable-ffmpeg_static ./Autobuild.sh -t raspbianbuster-armhf -j ${PARALLEL} -w ${WORKDIR}", + "support/bintray.py publish filelist.txt" + ] + }, "fedora28-x86_64": { "buildenv": "docker:fedora:28", "builddeps": [ diff --git a/Autobuild/raspbianbuster-armhf.sh b/Autobuild/raspbianbuster-armhf.sh new file mode 100644 index 000000000..ddfd4d801 --- /dev/null +++ b/Autobuild/raspbianbuster-armhf.sh @@ -0,0 +1,3 @@ +AUTOBUILD_CONFIGURE_EXTRA="${AUTOBUILD_CONFIGURE_EXTRA:-} --arch=armhf" +DEBDIST=raspbianbuster +source Autobuild/debian.sh