From: Andreas Smas Date: Fri, 18 Aug 2017 16:34:52 +0000 (-0700) Subject: Doozer: Add builds for stretch X-Git-Tag: v4.2.4~86 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a255d82838644bf44b42191ba771f781aa728aeb;p=thirdparty%2Ftvheadend.git Doozer: Add builds for stretch --- diff --git a/.doozer.json b/.doozer.json index 5ad20106c..0891db3e0 100644 --- a/.doozer.json +++ b/.doozer.json @@ -202,6 +202,60 @@ "support/bintray.py publish filelist.txt" ] }, + "stretch-i386": { + "buildenv": "stretch-i386", + "builddeps": [ + "lsb-release", + "cmake", + "git", + "build-essential", + "pkg-config", + "gettext", + "libavahi-client-dev", + "libssl-dev", + "zlib1g-dev", + "wget", + "bzip2", + "git-core", + "liburiparser-dev", + "libpcre3-dev", + "python", + "dvb-apps", + "debhelper", + "ccache" + ], + "buildcmd": [ + "AUTOBUILD_CONFIGURE_EXTRA=--enable-ccache\\ --enable-ffmpeg_static\\ --enable-hdhomerun_static ./Autobuild.sh -t ${TARGET} -j ${PARALLEL} -w ${WORKDIR}", + "support/bintray.py publish filelist.txt" + ] + }, + "stretch-amd64": { + "buildenv": "stretch-amd64", + "builddeps": [ + "lsb-release", + "cmake", + "git", + "build-essential", + "pkg-config", + "gettext", + "libavahi-client-dev", + "libssl-dev", + "zlib1g-dev", + "wget", + "bzip2", + "git-core", + "liburiparser-dev", + "libpcre3-dev", + "python", + "dvb-apps", + "debhelper", + "ccache" + ], + "buildcmd": [ + "AUTOBUILD_CONFIGURE_EXTRA=--enable-ccache\\ --enable-ffmpeg_static\\ --enable-hdhomerun_static ./Autobuild.sh -t ${TARGET} -j ${PARALLEL} -w ${WORKDIR}", + "support/bintray.py publish filelist.txt" + ] + }, "xenial-armhf": { "buildenv": "xenial-armhf", "builddeps": [ diff --git a/Autobuild/stretch-amd64.sh b/Autobuild/stretch-amd64.sh new file mode 100644 index 000000000..bfbd452e6 --- /dev/null +++ b/Autobuild/stretch-amd64.sh @@ -0,0 +1,3 @@ +AUTOBUILD_CONFIGURE_EXTRA="${AUTOBUILD_CONFIGURE_EXTRA:-} --arch=x86_64" +DEBDIST=stretch +source Autobuild/debian.sh diff --git a/Autobuild/stretch-i386.sh b/Autobuild/stretch-i386.sh new file mode 100644 index 000000000..05ce84829 --- /dev/null +++ b/Autobuild/stretch-i386.sh @@ -0,0 +1,3 @@ +AUTOBUILD_CONFIGURE_EXTRA="${AUTOBUILD_CONFIGURE_EXTRA:-} --arch=i686" +DEBDIST=stretch +source Autobuild/debian.sh