blob: cc032de7180ea88728386adefd5e5932fbd65588 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
pkgname=terminal-colors
pkgver=2.2
pkgrel=1
pkgdesc="An utility to test color capabilities of terminal"
arch=('any')
url="https://github.com/eikenb/$pkgname"
license=('GPL3')
depends=('python')
source=("$pkgname-$pkgver.tar.gz::https://github.com/eikenb/terminal-colors/archive/v2.2.tar.gz")
md5sums=('5b4ef9d2a613d757a704c2b53441a032')
package() {
cd "$srcdir/$pkgname-$pkgver"
install -D -m755 terminal-colors "$pkgdir/usr/bin/terminal-colors"
}
|