* update aha to 0.5.1-3

This commit is contained in:
Alexander Baldeck 2024-08-02 04:03:58 +02:00
parent 132b84edd6
commit 13a6409099
3 changed files with 26 additions and 6 deletions

14
aha/.SRCINFO Normal file
View File

@ -0,0 +1,14 @@
pkgbase = aha
pkgdesc = Ansi HTML Adapter: convert ANSI escape sequences to HTML
pkgver = 0.5.1
pkgrel = 3
url = https://github.com/theZiz/aha
arch = x86_64
license = MPL-1.1
license = LGPL-2.0-or-later
makedepends = git
depends = glibc
source = git+https://github.com/theZiz/aha#tag=0.5.1
sha256sums = ca2576468fa5b7e34ec7d3e74e31444346eae5617f24f33859a1d21383d5e749
pkgname = aha

4
aha/.nvchecker.toml Normal file
View File

@ -0,0 +1,4 @@
[aha]
source = 'github'
github = 'theZiz/aha'
use_max_tag = true

View File

@ -5,21 +5,23 @@
pkgname=aha
pkgver=0.5.1
pkgrel=2
pkgrel=3
pkgdesc='Ansi HTML Adapter: convert ANSI escape sequences to HTML'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url='https://github.com/theZiz/aha'
license=(MPL LGPL)
license=(MPL-1.1
LGPL-2.0-or-later)
depends=(glibc)
source=(https://github.com/theZiz/aha/archive/$pkgver/$pkgname-$pkgver.tar.gz)
sha256sums=('6aea13487f6b5c3e453a447a67345f8095282f5acd97344466816b05ebd0b3b1')
makedepends=(git)
source=(git+https://github.com/theZiz/aha#tag=$pkgver)
sha256sums=('ca2576468fa5b7e34ec7d3e74e31444346eae5617f24f33859a1d21383d5e749')
build() {
cd $pkgname-$pkgver
cd $pkgname
make
}
package() {
cd $pkgname-$pkgver
cd $pkgname
make PREFIX="$pkgdir/usr" install
}