# Contributor: judd # Committer: Judd Vinet # Maintainer: Stefan Husmann pkgname=mawk pkgver=1.3.4_20191231 pkgrel=1 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=('4c118ce8d5c6b1286e1e0bdfe07bb4a30936319aef55627dcf30b027489e7166') 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 }