Date: Tuesday, January 3, 2023 @ 01:51:10
Author: felixonmars
Revision: 1374219
archrelease: copy trunk to community-staging-x86_64
Added:
chafa/repos/community-staging-x86_64/
chafa/repos/community-staging-x86_64/PKGBUILD
(from rev 1374217, chafa/trunk/PKGBUILD)
chafa/repos/community-staging-x86_64/keys/
----------+
PKGBUILD | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
Copied: chafa/repos/community-staging-x86_64/PKGBUILD (from rev 1374217,
chafa/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-01-03 01:51:10 UTC (rev 1374219)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan <[email protected]>
+
+pkgname=chafa
+pkgver=1.12.4
+pkgrel=2
+pkgdesc="Image-to-text converter supporting a wide range of symbols and
palettes, transparency, animations, etc."
+arch=("x86_64")
+url="https://hpjansson.org/chafa/"
+depends=('imagemagick' 'librsvg' 'libwebp' 'libxslt')
+makedepends=('gtk-doc')
+license=("LGPL")
+source=(https://github.com/hpjansson/chafa/releases/download/$pkgver/chafa-$pkgver.tar.xz{,.asc})
+sha512sums=('2732ff380fc6d61124298ae3d9958d676fe6ca2887ee11df057d4efa6f4ae9c074a7e1920a6a3db1ffb21882432769967f4453d52a0344e581993984133a0e9b'
+ 'SKIP')
+validpgpkeys=('C01EDE5BB0D91E26D003662EC76BB9FEEAD12EA7') # Hans Petter
Jansson
+
+build() {
+ cd $pkgname-$pkgver
+
+ ./configure --prefix=/usr --enable-man
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+
+ make DESTDIR="$pkgdir" install
+}