#!/usr/bin/env bash
if [ ! -f /tmp/linux ]; then
curl -sS https://www.linux.org.ru/ | egrep -o /tag/[0-9a-z-]+ | sed 's|/tag/||' > /tmp/linux
fi
if [ ! -f /tmp/pron ]; then
curl -sS http://www.xvideos.com/tags | egrep -o /tags/[a-z0-9-]+ | sed 's|/tags/||' > /tmp/pron
fi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Libav < Formula | |
homepage 'http://libav.org/' | |
url 'http://libav.org/releases/libav-9_beta2.tar.xz' | |
sha1 'acb7ffbcded06e5f04e8fd0f7dbcc923fd95df3f' | |
head 'git://git.libav.org/libav.git' | |
option "without-x264", "Disable H264 encoder" |
Blog post here