summaryrefslogtreecommitdiff
path: root/opt/detox/MAKEPKG
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/detox/MAKEPKG
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/detox/MAKEPKG')
-rw-r--r--opt/detox/MAKEPKG33
1 files changed, 33 insertions, 0 deletions
diff --git a/opt/detox/MAKEPKG b/opt/detox/MAKEPKG
new file mode 100644
index 0000000..8626293
--- /dev/null
+++ b/opt/detox/MAKEPKG
@@ -0,0 +1,33 @@
+#!/bin/mkpkg
+# description: Safely renames files by removing special characters
+# url: https://github.com/dharple/detox
+
+name=detox
+version=3.0.1
+release=1
+source=(https://github.com/dharple/detox/releases/download/v$version/$name-$version.tar.gz)
+
+sha256sums=(
+ "b3dac4f7fcfaa621c6fc5950a2c7e5747cdc9d78aacb9041875fad916b838e60"
+)
+
+build() {
+ cd $name-$version
+
+ ./configure \
+ --prefix=/usr \
+ --mandir=/usr/share/man \
+ --sysconfdir=/etc
+
+ make
+ make DESTDIR=$PKG install
+
+ rm -rf $PKG/usr/share/doc/
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh