27 lines
550 B
Bash
27 lines
550 B
Bash
# Maintainer: Future Linux Team <futurelinux@163.com>
|
|
|
|
pkgname=rdfind
|
|
pkgver=1.6.0
|
|
pkgrel=1
|
|
pkgdesc="Redundant data find - a program that finds duplicate files"
|
|
arch=('x86_64')
|
|
url="https://rdfind.pauldreik.se"
|
|
license=('GPL-2.0-only')
|
|
depends=('nettle' 'glibc' 'gcc-libs')
|
|
source=(https://rdfind.pauldreik.se/${pkgname}-${pkgver}.tar.gz)
|
|
sha256sums=(7a406e8ef1886a5869655604618dd98f672f12c6a6be4926d053be65070f3279)
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
${CONFIGURE}
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
}
|