(dali_env) Install the correct package depending on the Ubuntu version 47/264147/3
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Mon, 13 Sep 2021 17:29:33 +0000 (18:29 +0100)
committerAdeel Kazmi <adeel.kazmi@samsung.com>
Tue, 14 Sep 2021 09:54:36 +0000 (10:54 +0100)
Change-Id: I007d91f7e6f38abfd387c8bd4bd86a578959289f

build/scripts/dali_env

index 20cfe5e..3a952dd 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# Copyright (c) 2020 Samsung Electronics Co., Ltd.
+# Copyright (c) 2021 Samsung Electronics Co., Ltd.
 
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -37,7 +37,6 @@ my @system_packages = (
     "pkg-config",
     "libtool",
     "ccache",
-    "libelementary-dev",
     "libexif-dev",
     "libgles2-mesa-dev",
     "libdrm-dev",
@@ -60,6 +59,18 @@ my @system_packages = (
     "libwebp-dev",
 );
 
+my $ubuntu_version = (split(/\s+/, `lsb_release -d`))[2];
+if (${ubuntu_version} > 20)
+{
+    # Add unique packages for 20.04 and above
+    push @system_packages, "libefl-all-dev";
+}
+else
+{
+    # Add unique packages for Ubuntu releases before 20.04
+    push @system_packages, "libelementary-dev";
+}
+
 # Some packages like require building from source
 # v8 is currently disabled until we can get it working without a http proxy being setup
 my @source_pkgs = (