19 lines
429 B
Plaintext
19 lines
429 B
Plaintext
# Description: JPEG to ASCII art converter
|
|
# URL: https://github.com/cslarsen/jp2a/
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: libjpeg-turbo curl
|
|
|
|
name=jp2a
|
|
version=1.0.7
|
|
release=1
|
|
source=(https://github.com/cslarsen/jp2a/archive/refs/tags/v$version.tar.gz)
|
|
renames=($name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
autoreconf -vi
|
|
./configure --prefix="/usr"
|
|
make -j
|
|
make DESTDIR=$PKG install
|
|
}
|