blob: 4978c9f36fdea8dfdd0063fa947394ee181fb775 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Maintainer: Vinson Chuong <vinsonchuong@gmail.com>
pkgname="tmux-solarized16"
pkgver="20190714"
pkgrel="1"
pkgdesc="Solarized in 16 colors for tmux"
arch=("any")
url="https://github.com/seebi/tmux-colors-solarized"
license=("MIT")
depends=("tmux")
conflicts=("tmux-solarized-git")
source=("git+$url#commit=e5e7b4f")
md5sums=('SKIP')
build ()
{
cd 'tmux-colors-solarized';
mv 'tmuxcolors-256.conf' 'solarized-256.conf';
mv 'tmuxcolors-light.conf' 'solarized-light.conf';
mv 'tmuxcolors-dark.conf' 'solarized-dark.conf'
}
package ()
{
cd 'tmux-colors-solarized';
install -Dm644 -t "$pkgdir/usr/share/tmux" *.conf
}
|