From 831386977ea6abb5c5a1f6bf0735a81c4fbedb39 Mon Sep 17 00:00:00 2001
From: Daigo 3 Dango <zunda@users.noreply.github.com>
Date: Fri, 12 May 2017 02:33:54 -1000
Subject: [PATCH] Use cid3 on Heroku (#3001)

Use https://github.com/heroku/heroku-buildpack-apt to
install protobuf-compiler and libprotobuf-dev which are needed by cid3
---
 Aptfile  | 2 ++
 app.json | 3 +++
 2 files changed, 5 insertions(+)
 create mode 100644 Aptfile

diff --git a/Aptfile b/Aptfile
new file mode 100644
index 0000000000..f4efb985f8
--- /dev/null
+++ b/Aptfile
@@ -0,0 +1,2 @@
+protobuf-compiler
+libprotobuf-dev
diff --git a/app.json b/app.json
index 6c4294c79e..049f63a9e5 100644
--- a/app.json
+++ b/app.json
@@ -94,6 +94,9 @@
     }
   },
   "buildpacks": [
+    {
+      "url": "https://github.com/heroku/heroku-buildpack-apt"
+    },
     {
       "url": "heroku/nodejs"
     },
-- 
GitLab