From: mpmc Date: Wed, 3 Oct 2018 09:46:47 +0000 (+0100) Subject: doozer: add cosmic cuttlefish X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0a725f4671a28b8b829ce371709ea4452d252ec;p=thirdparty%2Ftvheadend.git doozer: add cosmic cuttlefish --- diff --git a/.doozer.json b/.doozer.json index 39a53c470..eb1d94e6e 100644 --- a/.doozer.json +++ b/.doozer.json @@ -487,5 +487,59 @@ "support/bintray.py publish filelist.txt", ] }, + "cosmic-amd64": { + "buildenv": "docker:ubuntu:cosmic", + "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-ffmpeg_static\\ --enable-hdhomerun_static ./Autobuild.sh -t ${TARGET} -j ${PARALLEL} -w ${WORKDIR}", + "support/bintray.py publish filelist.txt", + ] + }, + "cosmic-i386": { + "buildenv": "docker:i386/ubuntu:cosmic", + "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-ffmpeg_static\\ --enable-hdhomerun_static ./Autobuild.sh -t ${TARGET} -j ${PARALLEL} -w ${WORKDIR}", + "support/bintray.py publish filelist.txt", + ] + }, } } diff --git a/Autobuild/cosmic-amd64.sh b/Autobuild/cosmic-amd64.sh new file mode 100644 index 000000000..98c4128e0 --- /dev/null +++ b/Autobuild/cosmic-amd64.sh @@ -0,0 +1,3 @@ +AUTOBUILD_CONFIGURE_EXTRA="${AUTOBUILD_CONFIGURE_EXTRA:-} --arch=x86_64" +DEBDIST=cosmic +source Autobuild/debian.sh diff --git a/Autobuild/cosmic-i386.sh b/Autobuild/cosmic-i386.sh new file mode 100644 index 000000000..776f10706 --- /dev/null +++ b/Autobuild/cosmic-i386.sh @@ -0,0 +1,3 @@ +AUTOBUILD_CONFIGURE_EXTRA="${AUTOBUILD_CONFIGURE_EXTRA:-} --arch=i686" +DEBDIST=cosmic +source Autobuild/debian.sh