summaryrefslogtreecommitdiffstats
path: root/ded
diff options
context:
space:
mode:
authorzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
committerzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
commit3ee93968e10126adc7dad5c8872f0170c3421e13 (patch)
treebcac8daa62b6c9a94a48dae87f5d3f6de1985bba /ded
parent936433a5deb6ccc8f8476096f2c2b8dc72c33388 (diff)
downloadzorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.gz
zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.xz
various obsolette
Diffstat (limited to 'ded')
-rw-r--r--ded/.footprint11
-rw-r--r--ded/.signature7
-rw-r--r--ded/MAKEPKG33
3 files changed, 51 insertions, 0 deletions
diff --git a/ded/.footprint b/ded/.footprint
new file mode 100644
index 0000000..0342a7a
--- /dev/null
+++ b/ded/.footprint
@@ -0,0 +1,11 @@
1drwxr-xr-x root/root usr/
2drwxr-xr-x root/root usr/bin/
3-rwxr-xr-x root/root usr/bin/ded
4drwxr-xr-x root/root usr/share/
5drwxr-xr-x root/root usr/share/ded/
6-rw-r--r-- root/root usr/share/ded/ccodes.rc
7-rw-r--r-- root/root usr/share/ded/cnames.rc
8-rw-r--r-- root/root usr/share/ded/ded.hlp
9drwxr-xr-x root/root usr/share/man/
10drwxr-xr-x root/root usr/share/man/man1/
11-rw-r--r-- root/root usr/share/man/man1/ded.1.gz
diff --git a/ded/.signature b/ded/.signature
new file mode 100644
index 0000000..e170fdb
--- /dev/null
+++ b/ded/.signature
@@ -0,0 +1,7 @@
1untrusted comment: verify with zorz.pub
2RWTZ9IduCSQ/mHoKRGctvEn4k2Wh7uYA0HIzK6n4H5qonKXmJk5hJdjT3FLN6RyCRlhQ/PjhbhC414VP6lhpotzNTZU0QtaiqQg=
3
4SHA256 (MAKEPKG) = ca4d31668337c37a686342b8e1c3aba7ec965e894ff548eed6521284f134295b
5SHA256 (.footprint) = 4de3dddde2bf952a6e48eb86b822ef462d95b9f225166b7c9938f84ef241d4de
6SHA256 (ded-20250928.tgz) = b5bfb0850a70f3b1e64c9736e73d00788442bfc4c273b5b3d13f68f454a8c530
7SHA256 (td_lib-20250928.tgz) = 8854186a30eb4fd842397f54afe9309bfa53607bf60a9cf8e0b2a6b7231a35a3
diff --git a/ded/MAKEPKG b/ded/MAKEPKG
new file mode 100644
index 0000000..484fbc1
--- /dev/null
+++ b/ded/MAKEPKG
@@ -0,0 +1,33 @@
1#!/bin/mkpkg
2# description: Direcotry editor
3# url: https://invisible-island.net/ded/
4
5name=ded
6version=20250928
7release=1
8depends=(ncurses)
9source=(https://invisible-island.net/archives/ded/$name-$version.tgz
10 https://invisible-island.net/archives/ded/td_lib-$version.tgz)
11
12sha256sums=(
13 "b5bfb0850a70f3b1e64c9736e73d00788442bfc4c273b5b3d13f68f454a8c530"
14 "8854186a30eb4fd842397f54afe9309bfa53607bf60a9cf8e0b2a6b7231a35a3"
15)
16
17build() {
18 cd td_lib-$version
19 ./configure --prefix=/usr
20 make -j1
21
22 cd $SRC/$name-$version
23 ./configure --prefix=/usr
24 make -j1
25 make -j1 DESTDIR=$PKG install
26}
27
28signify() {
29 untrusted comment: public key
30 RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
31}
32
33# vim: filetype=sh