blob: 6e0500be3eeebfbd48c419839946f7243d6ebaad (
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
|
#!/bin/mkpkg
# description: find duplicate files utility
# url: https://github.com/pauldreik/rdfind
name=rdfind
version=1.8.0
release=1
depends=(nettle)
source=(https://github.com/pauldreik/rdfind/archive/releases/$version.tar.gz)
renames=($name-$version.tar.gz)
sha256sums=(
"6651603138cb91872d3e1628af5b89992f1937a86201645e8387fa42f98bc206"
)
build() {
cd $name-releases-$version
./bootstrap.sh
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|