mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-12 19:32:31 +01:00
47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Maintainer:
|
|
pkgname=aha
|
|
pkgver=0.4.6
|
|
pkgrel=0
|
|
pkgdesc="ANSI color to HTML converter"
|
|
url="http://anonscm.debian.org/gitweb/?p=collab-maint/aha.git;a=summary"
|
|
arch="all"
|
|
license="MPL"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://ftp.de.debian.org/debian/pool/main/a/aha/aha_0.4.6.orig.tar.gz
|
|
0001-Fix-several-hyphen-used-as-minus-sign-issues-in-the-.patch
|
|
0001-Honor-common-compiler-and-linker-flags.patch"
|
|
|
|
_builddir="$srcdir/theZiz-aha-42a7c6f"
|
|
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
install -Dm 755 aha \
|
|
"$pkgdir"/usr/bin/aha || return 1
|
|
install -Dm 644 aha.1 \
|
|
"$pkgdir"/usr/share/man/man1/aha.1 || return 1
|
|
}
|
|
|
|
md5sums="3557e9437957ca01a171354c872f5bfc aha_0.4.6.orig.tar.gz
|
|
1105a981ee4973945c2000874eeb289b 0001-Fix-several-hyphen-used-as-minus-sign-issues-in-the-.patch
|
|
71425c7044c709848606054578f730da 0001-Honor-common-compiler-and-linker-flags.patch"
|