Interestingly, I was compiling FFmpeg with libaom myself just now, then I noticed this PR.
In fact, `aom.git` does have a `v1.0.0` tag, tagged in June:
```git
tag v1.0.0
Tagger: Yaowu Xu <[email protected]>
TaggerDate: Mon Jun 25 10:14:26 2018 -0700
AOMedia Codec Workgroup Approved version 1.0
commit d14c5bb4f336ef1842046089849dee4a301fbbf0 (HEAD, tag: v1.0.0)
Author: Yaowu Xu <[email protected]>
AuthorDate: Mon Jun 25 07:54:59 2018 -0700
Commit: Yaowu Xu <[email protected]>
CommitDate: Mon Jun 25 07:54:59 2018 -0700
[NORMATIVE]Allow non-identical sequence headers
This commit changes the reference code to allow additional sequence
headers with different number of trailing 0 bits.
Change-Id: Icbb1c9a834b438271456fcda9323a3212dd62784
```
Not sure if it wasn't pushed to origin at the time of your discussion.
My trivial `libaom.rb`:
```rb
class Libaom < Formula
desc "Alliance for Open Media AV1 codec"
homepage "https://aomedia.googlesource.com/aom/"
url "https://aomedia.googlesource.com/aom.git",
:tag => "v1.0.0",
:revision => "d14c5bb4f336ef1842046089849dee4a301fbbf0"
depends_on "cmake" => :build
def install
mkdir "build" do
system "cmake", "..", *std_cmake_args
system "make", "install"
end
end
test do
raise "Not implemented."
end
end
```