blob: 4d0b28b9126ab0da1f407e18f50e45ee28b6221c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Brandon Barker <bbarker.py@protonmail.ch>
pkgname=mplcolors
pkgver=1.1.1
pkgrel=1
pkgdesc="CLI to display matplotlib colors, colorbars, and other useful functions."
arch=('any')
url="https://github.com/AstroBarker/mplcolors"
depends=("bash" "python")
makedepends=("git")
optdepends=()
provides=()
conflicts=()
license=("GPL")
source=("$pkgname::git+https://github.com/astrobarker/mplcolors.git")
package() {
cd $pkgname
make DESTDIR="$pkgdir" install
}
sha256sums=('SKIP')
|