rdfind 1.6.0-1

This commit is contained in:
xhaa123 2024-11-17 19:35:52 +08:00
commit bf62fa716b

26
PKGBUILD Normal file
View File

@ -0,0 +1,26 @@
# 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
}