-
Notifications
You must be signed in to change notification settings - Fork 1
/
brew-install-favorites-for-libraries
executable file
·81 lines (60 loc) · 1.68 KB
/
brew-install-favorites-for-libraries
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/bin/sh
##
# brew-install-favorites-for-libraries
#
# Use Homebrew to install our favorite lib-related packages
# that can be installed fully automatically i.e. unattended;
# these packages do not ask for passwords, do not have any
# prompts, and do not have any issues that need a human.
#
# If you're using this file and you find any packages that
# do not install automatically, please let us know by opening
# an issue, or emailing us, or creating a pull request. Thanks!
#
# We expect many of these libraries will already be installed
# by a bunch of the software in the other brew files here.
#
# This file is just to cover our bases to make sure we have all the
# libraries that we want for building other software later on.
##
# Audio/Visual converters
brew install libav
# Curl web fetcher
brew install libcurl
# Foreign Function Interface Library
brew install libffi
# Text encoding
brew install libiconv
brew install homebrew/dupes/libiconv
# File magic number recognizer
brew install libmagic
# ncurses console nagivation
brew install libncurses
# Postgres queries
brew install libpq
# Sodium secure cryptography
brew install libsodium
# Readline terminal input
brew install libreadline
# GNU libtool is a generic library support script.
brew install libtool
# XML handlers
brew install libxml2
# XSLT handlers
brew install libxslt
# High-level interface to X.509 and CMS (Cryptographic Message Syntax)
brew install libksba
# V8 JavaScript
brew install libv8
# YAML markup language
brew install libyaml
# ZIP file compression
brew install libzip
# Images: JPG
brew install libjpg
# Images: PNG
brew install libpng
# Images: TIFF
brew install libtiff
# Images: WEBP
brew install libwebp