blob: 4b01ab205cada50eae5e4ddf41a07efdae035dfd (
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
34
35
36
37
38
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
# Contributor: Christian Kohlstedde <christian+aur@kohlsted.de>
# Contributor: Mariusz Libera <mariusz.libera@gmail.com>
# Contributor: Alex 'AdUser' Z <ad_user@mail.ru>
pkgname=rdfind
pkgver=1.6.0
pkgrel=4
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://github.com/pauldreik/rdfind/archive/refs/tags/releases/1.6.0.tar.gz')
sha512sums=('97c46294070b9bd91f1de3c9ecd5ae74c44eca0386f393ae3d42c3dce51b619479f259c05a02ece13891532d61c63071d43d45b63d40de62450c49fefac70d70')
validpgpkeys=("CC3C51BA88205B19728A6F07C9D9A0EA44EAE0EB")
b2sums=('96ca92d94e76a4014e874be35b94189c1f22fb00f1cdf06c2ac48e3b9d4ca1b589ec831f6f9059dd668d9d539f5adfab7b820eaaff70fb35a7624400445b999c')
prepare() {
cd "${pkgname}-releases-${pkgver}"
./bootstrap.sh
}
build() {
cd "${pkgname}-releases-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${pkgname}-releases-${pkgver}"
make DESTDIR="${pkgdir}/" install
# documentation
install -dm755 "${pkgdir}/usr/share/doc/${pkgname}"
install -m644 AUTHORS ChangeLog README TODO \
"${pkgdir}/usr/share/doc/${pkgname}"
}
|