blob: 8626293d60b0eb6f1127253628dda61eb4bb92aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
|