From 532b1a9c8a8f3a80fd7d7ca5739a66f88ec02b35 Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Wed, 13 May 2015 18:52:01 +0200 Subject: [PATCH] runawk: call mkcmake directly. --- srcpkgs/runawk/template | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/srcpkgs/runawk/template b/srcpkgs/runawk/template index 1f106525293..4d2facff13d 100644 --- a/srcpkgs/runawk/template +++ b/srcpkgs/runawk/template @@ -1,11 +1,8 @@ # Template file for 'runawk' pkgname=runawk version=1.5.1 -revision=2 +revision=3 wrksrc="${pkgname}-${pkgname}-${version}" -build_style=gnu-makefile -make_cmd=mkcmake -make_install_args="MANDIR=/usr/share/man STRIPFLAG=" hostmakedepends="mk-configure perl" depends="virtual?awk" short_desc="Powerful wrapper for AWK interpreter" @@ -15,6 +12,10 @@ homepage="https://github.com/cheusov/runawk" distfiles="https://github.com/cheusov/${pkgname}/archive/${pkgname}-${version}.tar.gz" checksum=b4f7dc2bb200c0147ada4bdecad5cd19100eca64bb38fda97b8178243cb4da4b -post_install() { +do_build() { + mkcmake ${makejobs} +} +do_install() { + mkcmake install MANDIR=/usr/share/man STRIPFLAG= vlicense doc/LICENSE }