blob: ac0e226a9212237929924bef448de8ef9c8024e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Contributor: tcely <tcely@users.noreply.github.com>
# Maintainer: Roberto Oliveira <robertoguimaraes8@gmail.com>
pkgname=jdupes
pkgver=1.12
pkgrel=0
pkgdesc="identifying and taking actions upon duplicate files"
options="!check" # No testsuite
url="https://github.com/jbruchon/jdupes"
arch="all"
license="MIT"
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/jbruchon/$pkgname/archive/v${pkgver}.tar.gz"
build() {
make
}
package() {
make DESTDIR="$pkgdir" PREFIX="/usr" install
}
sha512sums="f558e5cb4f1d7ab7eb7d590adfd852fe4a00e03b27d2dd88fbf9a9b769421af0875893015314aef1f58e14329d5d9d8d67d3f2456805d5b0b377611d4250f81f jdupes-1.12.tar.gz"
|