cruxports/jp2a/Pkgfile

19 lines
424 B
Plaintext
Raw Normal View History

2022-02-05 20:39:19 +00:00
# Description: JPEG to ASCII art converter
# URL: https://github.com/cslarsen/jp2a/
# Maintainer: John McQuah, jmcquah at disroot dot org
2022-04-26 11:51:12 +00:00
# Depends on: libjpeg-turbo
2022-02-05 20:39:19 +00:00
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
}