20 lines
436 B
Plaintext
20 lines
436 B
Plaintext
# Description: find duplicate files utility
|
|
# URL: https://github.com/pauldreik/rdfind
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: nettle
|
|
|
|
name=rdfind
|
|
version=1.6.0
|
|
release=1
|
|
source=(https://github.com/pauldreik/rdfind/archive/releases/$version.tar.gz)
|
|
renames=($name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-releases-$version
|
|
|
|
./bootstrap.sh
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|