# Contributor: judd # Committer: Judd Vinet # Maintainer: Stefan Husmann pkgname=mawk pkgver=1.3.4_20190203 pkgrel=2 pkgdesc="An interpreter for the AWK Programming Language" arch=('i686' 'x86_64') license=('GPL') depends=('glibc') url="http://invisible-island.net/mawk/" source=("$pkgname-$pkgver.tar.gz::http://invisible-island.net/datafiles/release/$pkgname.tar.gz") sha256sums=('daacb314029185bbef86b0df5627ad8591378d420fc32236f99f15a9a8a6b840') build() { cd $pkgname-${pkgver/_/-} sed -ie 's|log()|log(1.0)|g' configure sed -ie "s|trap *0|trap 'exit 0' 0|g" test/* ./configure make -j1 } package () { cd $pkgname-${pkgver/_/-} install -d "$pkgdir"/usr/bin install -d "$pkgdir"/usr/share/man/man1 make BINDIR="$pkgdir"/usr/bin \ MANDIR="$pkgdir"/usr/share/man/man1 install }