25 lines
677 B
Bash
25 lines
677 B
Bash
# Template file for 'fdupes'
|
|
pkgname=fdupes
|
|
# version 1.51 is earlier than 1.6.x but is a higher version.
|
|
# so use "reverts" to make XBPS upgrade happens.
|
|
# More conventional numbering scheme since 1.6.0
|
|
reverts="1.51_6"
|
|
version=1.6.1
|
|
revision=1
|
|
distfiles="https://github.com/adrianlopezroche/fdupes/archive/v$version.tar.gz"
|
|
checksum=9d6b6fdb0b8419815b4df3bdfd0aebc135b8276c90bbbe78ebe6af0b88ba49ea
|
|
maintainer="Steven R <dev@styez.com>"
|
|
homepage="https://github.com/adrianlopezroche/fdupes"
|
|
license="MIT"
|
|
short_desc="Identify or delete duplicate files within specified directories"
|
|
|
|
do_build() {
|
|
make CC="$CC"
|
|
}
|
|
|
|
do_install() {
|
|
vbin fdupes
|
|
vman fdupes.1
|
|
vlicense README
|
|
}
|