diff options
Diffstat (limited to 'opt/detox/MAKEPKG')
| -rw-r--r-- | opt/detox/MAKEPKG | 33 |
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 |
