summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShokara Kou <kou@13f0.net>2022-05-13 12:33:41 -0400
committerShokara Kou <kou@13f0.net>2022-12-10 16:12:53 -0500
commit60b6d40c62542bce2ef60db0f16cc0f39fe7e70e (patch)
tree15a8e438122ebb3ad067cedc576edd2aab3dde63
parent980b56a6aceac818050cebc404960044b7682424 (diff)
add wcalc
-rw-r--r--wcalc/.footprint7
-rw-r--r--wcalc/.md5sum1
-rw-r--r--wcalc/Pkgfile19
3 files changed, 27 insertions, 0 deletions
diff --git a/wcalc/.footprint b/wcalc/.footprint
new file mode 100644
index 0000000..e322b36
--- /dev/null
+++ b/wcalc/.footprint
@@ -0,0 +1,7 @@
1drwxr-xr-x root/root usr/
2drwxr-xr-x root/root usr/bin/
3-rwxr-xr-x root/root usr/bin/wcalc
4drwxr-xr-x root/root usr/share/
5drwxr-xr-x root/root usr/share/man/
6drwxr-xr-x root/root usr/share/man/man1/
7-rw-r--r-- root/root usr/share/man/man1/wcalc.1.gz
diff --git a/wcalc/.md5sum b/wcalc/.md5sum
new file mode 100644
index 0000000..c68c6c5
--- /dev/null
+++ b/wcalc/.md5sum
@@ -0,0 +1 @@
45b02ba339a813ffc65f154d1e54a04b wcalc-2.5.tar.bz2
diff --git a/wcalc/Pkgfile b/wcalc/Pkgfile
new file mode 100644
index 0000000..b5c42bd
--- /dev/null
+++ b/wcalc/Pkgfile
@@ -0,0 +1,19 @@
1# Description: a very capable cli calculator
2# URL: http://w-calc.sourceforge.net/
3# Maintainer: Shokara Kou, kou at 13f0 dot net
4# Depends on: libgmp libmpfr
5
6name=wcalc
7version=2.5
8release=1
9source=(https://downloads.sourceforge.net/w-calc/$name-$version.tar.bz2)
10
11build() {
12 cd $name-$version
13
14 ./configure \
15 --prefix=/usr
16
17 make
18 make DESTDIR=$PKG install
19}