Received: from relay4-d.mail.gandi.net (relay4-d.mail.gandi.net [217.70.183.196]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id C8015782AFC for <~alpine/aports@lists.alpinelinux.org>; Mon, 12 Aug 2019 14:39:22 +0000 (UTC) X-Originating-IP: 146.115.3.75 Received: from t5cc-alpine.my.domain (146-115-3-75.ma.subnet.cable.rcncustomer.com [146.115.3.75]) (Authenticated sender: me@cosmoborsky.com) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 07A66E0002; Mon, 12 Aug 2019 14:39:21 +0000 (UTC) From: Cosmo Borsky To: ~alpine/aports@lists.alpinelinux.org Cc: Cosmo Borsky Subject: [PATCH 3/3] testing/chafa: new abuild Date: Mon, 12 Aug 2019 14:38:26 +0000 Message-Id: <20190812143823.9724-3-me@cosmoborsky.com> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20190812143823.9724-2-me@cosmoborsky.com> References: <20190812143823.9724-2-me@cosmoborsky.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit https://hpjansson.org/chafa Image-to-text converter supporting a wide range of symbols and palettes, transparency, animations, etc. --- testing/chafa/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 testing/chafa/APKBUILD diff --git a/testing/chafa/APKBUILD b/testing/chafa/APKBUILD new file mode 100644 index 0000000000..ff5766a266 --- /dev/null +++ b/testing/chafa/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Cosmo Borsky +# Maintainer: Cosmo Borsky +pkgname="chafa" +pkgver="1.2.0" +pkgrel=0 +pkgdesc="Image-to-text converter supporting a wide range of symbols and palettes, transparency, animations, etc." +url="https://hpjansson.org/chafa" +giturl="https://github.com/hpjansson/chafa" +arch="x86_64" # based on Arch Linux PKGBUILD, not tested on other arches +license="LGPL-3.0" +depends="imagemagick-libs" +depends_doc="gtk-doc" +makedepends="make autoconf automake libtool imagemagick-dev" +subpackages="$pkgname-dev $pkgname-doc" +options="!check" # no tests available +source="chafa-$pkgver.tar.xz::https://github.com/hpjansson/chafa/releases/download/$pkgver/chafa-$pkgver.tar.xz" +builddir="$srcdir/chafa-$pkgver" + +build() { + ./configure --prefix=/usr --enable-man + make +} + +package() { + make DESTDIR="$pkgdir" install +} + +sha512sums="04ea63446d3e518aaf8a9359a72bed243573a655c42f76e8de7017822928bcd131976b472a008d5fb7c29235235dfafb9eb20c4066fbb73f4126e99bce16ec73 chafa-1.2.0.tar.xz" -- 2.22.0