summaryrefslogtreecommitdiff
path: root/manualPorts
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2022-12-04 10:45:32 +0100
committerErich Eckner <git@eckner.net>2022-12-04 10:45:32 +0100
commit9bf88122c6ef42719a4e8c170b14cb513e43936b (patch)
treebdd11f711e48b6dc32d7808470fb54cd7697f1d9 /manualPorts
parent85b65986bb420cf6fd2480adc8ea638a21e6d0cb (diff)
downloadcrux-ports-9bf88122c6ef42719a4e8c170b14cb513e43936b.tar.xz
traceroute new
Diffstat (limited to 'manualPorts')
-rw-r--r--manualPorts/traceroute/.footprint8
-rw-r--r--manualPorts/traceroute/.md5sum1
-rw-r--r--manualPorts/traceroute/.signature5
-rw-r--r--manualPorts/traceroute/Pkgfile17
4 files changed, 31 insertions, 0 deletions
diff --git a/manualPorts/traceroute/.footprint b/manualPorts/traceroute/.footprint
new file mode 100644
index 0000000..c5479b5
--- /dev/null
+++ b/manualPorts/traceroute/.footprint
@@ -0,0 +1,8 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/local/
+drwxr-xr-x root/root usr/local/bin/
+-rwxr-xr-x root/root usr/local/bin/traceroute
+drwxr-xr-x root/root usr/local/share/
+drwxr-xr-x root/root usr/local/share/man/
+drwxr-xr-x root/root usr/local/share/man/man8/
+-rw-r--r-- root/root usr/local/share/man/man8/traceroute.8.gz
diff --git a/manualPorts/traceroute/.md5sum b/manualPorts/traceroute/.md5sum
new file mode 100644
index 0000000..ec0f25f
--- /dev/null
+++ b/manualPorts/traceroute/.md5sum
@@ -0,0 +1 @@
+84d329d67abc3fb83fc8cb12aeaddaba traceroute-2.1.0.tar.gz
diff --git a/manualPorts/traceroute/.signature b/manualPorts/traceroute/.signature
new file mode 100644
index 0000000..21dae84
--- /dev/null
+++ b/manualPorts/traceroute/.signature
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/deepthought.pub
+RWQxCptPusLGGh0uaDsPrCzI1p99vXlweIpWf+Mhhif1sPApCZAqro0dx4xvJkCrfWSCAORsCcfvdMiuiPNSD7PGH2SRfkV0TwQ=
+SHA256 (Pkgfile) = f0339df4603d770ad778df059e48d8c5beb09bd06f1739a4d617981f9c4c09d9
+SHA256 (.footprint) = 5c2cf35f039f66a5fb3513605c65fa33355a71e4eaf212002a7154b6a67010d4
+SHA256 (traceroute-2.1.0.tar.gz) = 3669d22a34d3f38ed50caba18cd525ba55c5c00d5465f2d20d7472e5d81603b6
diff --git a/manualPorts/traceroute/Pkgfile b/manualPorts/traceroute/Pkgfile
new file mode 100644
index 0000000..290ec83
--- /dev/null
+++ b/manualPorts/traceroute/Pkgfile
@@ -0,0 +1,17 @@
+# Description: Tracks the route taken by packets over an IP network
+# URL: http://traceroute.sourceforge.net/
+# Maintainer: Erich Eckner, crux at eckner dot net
+
+name=traceroute
+version=2.1.0
+release=1
+source=("https://downloads.sourceforge.net/${name}/${name}-${version}.tar.gz")
+
+build() {
+
+ cd ${name}-${version}
+
+ make
+ make DESTDIR=$PKG install
+
+}