blob: 3aaa07d8531f69037907a28526a1f5b09a5ec85e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Maintainer: Yusuf Aktepe <yusuf@yusufaktepe.com>
# Contributor: whiteman808 <whiteman808@paraboletancza.org>
# Contributor: Andrew Sun <adsun701@gmail.com>
# Contributor: Eric Le Lay <contact@elelay.fr>
pkgname=ansifilter
pkgver=2.23
pkgrel=1
pkgdesc="remove or convert ANSI codes to another format"
arch=('i686' 'x86_64' 'pentium4' 'i486' 'aarch64')
url="https://gitlab.com/saalen/ansifilter"
license=('GPL3')
depends=('glibc' 'gcc-libs')
options=(!debug)
source=("https://gitlab.com/saalen/ansifilter/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
sha256sums=('ff9efcfe8623593a54cd7bec2499711ec2a49a425ab50c61f2148c6d7450d525')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
make all
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
rm "${pkgdir}/usr/share/doc/ansifilter/COPYING" \
"${pkgdir}/usr/share/doc/ansifilter/INSTALL"
}
|