blob: 83a361393c44c32a6ba06d0d1cae7ac563e1d3b0 (
plain)
1 # Description: Terminal graphics for the 21st century
2 # URL: https://github.com/hpjansson/chafa
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: imagemagick libraqm libxml2 libzip
5
6 name=chafa
7 version=1.8.0
8 release=1
9 source=(https://github.com/hpjansson/chafa/releases/download/$version/chafa-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13 ./autogen.sh
14 ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17 }
|