Add fdupes recipe

This commit is contained in:
Chris Roberts
2013-10-28 15:05:11 -06:00
parent d9cbb1a840
commit 56e2b60e1b

View File

@@ -0,0 +1,43 @@
SUMMARY="FDUPES is a program for identifying or deleting duplicate files"
DESCRIPTION="
fdupes is a program written by Adrian Lopez to scan directories for
duplicate files, with options to list, delete or replace the files
with hardlinks pointing to the duplicate. It first compares file
sizes and MD5 signatures, and then performs a byte-by-byte check for
verification.
"
HOMEPAGE="http://code.google.com/p/fdupes/"
SRC_URI="http://fdupes.googlecode.com/files/fdupes-1.51.tar.gz"
CHECKSUM_MD5="47d0410c90c9e51e450933ba35a32b62"
COPYRIGHT="1999-2013 Adrian Lopez"
LICENSE="MIT"
REVISION="1"
ARCHITECTURES="x86 x86_gcc2"
PROVIDES="
fdupes = $portVersion
cmd:fdupes = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_REQUIRES=""
BUILD_PREREQUIRES="
haiku_devel >= $haikuVersion
cmd:make
cmd:gcc
"
BUILD()
{
make
}
INSTALL()
{
make install \
PREFIX=$prefix \
MAN_BASE_DIR=$manDir
}