commit 261ecb0ff3f8d990e2b88fcccb00602eef1408ae Author: Tim Biermann <tbier@posteo.de> Date: Wed Jul 1 13:20:59 2020 +0000 fdupes: initial commit, version 2.1.0 diff --git a/fdupes/.footprint b/fdupes/.footprint new file mode 100644 index 000000000..9c135db58 --- /dev/null +++ b/fdupes/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/fdupes +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/fdupes.1.gz +drwxr-xr-x root/root usr/share/man/man7/ +-rw-r--r-- root/root usr/share/man/man7/fdupes-help.7.gz diff --git a/fdupes/.signature b/fdupes/.signature new file mode 100644 index 000000000..15eb93e55 --- /dev/null +++ b/fdupes/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF35DIt5d7V5hSs9QPb5uZCfoI92Was1eCkofzWOMqujO+S8i7Ij17UCsmRet0uJGKicw7VdrHlbDQA7zuFLhb4gs= +SHA256 (Pkgfile) = c83edeb9fcf82d4ee56e48d26daefa6f52fb6faf586da85e58de9d68645d7547 +SHA256 (.footprint) = 9e6a0d831a8ee2262a588b5b352953d8b1dad65348c11e289bae92c138c72d6f +SHA256 (fdupes-2.1.0.tar.gz) = e5b9fb62e1d71779a64711384e3ab8de876b73fabcf3eabba8608022af92129e diff --git a/fdupes/Pkgfile b/fdupes/Pkgfile new file mode 100644 index 000000000..507f135e2 --- /dev/null +++ b/fdupes/Pkgfile @@ -0,0 +1,17 @@ +# Description: a program for identifying or deleting duplicate files residing within specified directories +# URL: https://github.com/adrianlopezroche/fdupes +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: libpcre2 + +name=fdupes +version=2.1.0 +release=1 +source=(https://github.com/adrianlopezroche/fdupes/releases/download/v$version/$name...) + +build() { + cd $name-$version + autoreconf -vfi + ./configure --prefix=/usr + make + make DESTDIR=$PKG install +}