crux-ports

My CRUX Linux ports
Log | Files | Refs | README

commit 60b6d40c62542bce2ef60db0f16cc0f39fe7e70e
parent 980b56a6aceac818050cebc404960044b7682424
Author: Shokara Kou <kou@13f0.net>
Date:   Fri, 13 May 2022 12:33:41 -0400

add wcalc

Diffstat:
Awcalc/.footprint | 7+++++++
Awcalc/.md5sum | 1+
Awcalc/Pkgfile | 19+++++++++++++++++++
3 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/wcalc/.footprint b/wcalc/.footprint @@ -0,0 +1,7 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/wcalc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/wcalc.1.gz diff --git a/wcalc/.md5sum b/wcalc/.md5sum @@ -0,0 +1 @@ +45b02ba339a813ffc65f154d1e54a04b wcalc-2.5.tar.bz2 diff --git a/wcalc/Pkgfile b/wcalc/Pkgfile @@ -0,0 +1,19 @@ +# Description: a very capable cli calculator +# URL: http://w-calc.sourceforge.net/ +# Maintainer: Shokara Kou, kou at 13f0 dot net +# Depends on: libgmp libmpfr + +name=wcalc +version=2.5 +release=1 +source=(https://downloads.sourceforge.net/w-calc/$name-$version.tar.bz2) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr + + make + make DESTDIR=$PKG install +}