mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
Add fdupes package (#11567)
This commit is contained in:
3
manifest/armv7l/f/fdupes.filelist
Normal file
3
manifest/armv7l/f/fdupes.filelist
Normal file
@@ -0,0 +1,3 @@
|
||||
/usr/local/bin/fdupes
|
||||
/usr/local/share/man/man1/fdupes.1.zst
|
||||
/usr/local/share/man/man7/fdupes-help.7.zst
|
||||
3
manifest/i686/f/fdupes.filelist
Normal file
3
manifest/i686/f/fdupes.filelist
Normal file
@@ -0,0 +1,3 @@
|
||||
/usr/local/bin/fdupes
|
||||
/usr/local/share/man/man1/fdupes.1.zst
|
||||
/usr/local/share/man/man7/fdupes-help.7.zst
|
||||
3
manifest/x86_64/f/fdupes.filelist
Normal file
3
manifest/x86_64/f/fdupes.filelist
Normal file
@@ -0,0 +1,3 @@
|
||||
/usr/local/bin/fdupes
|
||||
/usr/local/share/man/man1/fdupes.1.zst
|
||||
/usr/local/share/man/man7/fdupes-help.7.zst
|
||||
26
packages/fdupes.rb
Normal file
26
packages/fdupes.rb
Normal file
@@ -0,0 +1,26 @@
|
||||
require 'buildsystems/autotools'
|
||||
|
||||
class Fdupes < Autotools
|
||||
description 'Program for identifying or deleting duplicate files residing within specified directories.'
|
||||
homepage 'https://github.com/adrianlopezroche/fdupes'
|
||||
version '2.3.2'
|
||||
license 'MIT'
|
||||
compatibility 'all'
|
||||
source_url 'https://github.com/adrianlopezroche/fdupes.git'
|
||||
git_hashtag "v#{version}"
|
||||
binary_compression 'tar.zst'
|
||||
|
||||
binary_sha256({
|
||||
aarch64: '380ae7833a60f5c8a3b5d6775e28247cfad53936b86d7d94c4cf62a12a71d0ff',
|
||||
armv7l: '380ae7833a60f5c8a3b5d6775e28247cfad53936b86d7d94c4cf62a12a71d0ff',
|
||||
i686: 'c1723549021cfecdf9cf087a81e5c5c1a3e307754d781932411d504422625409',
|
||||
x86_64: '73038847795557bb79c7ce94a38246816a7619d19e130ea3854151479a4923d6'
|
||||
})
|
||||
|
||||
depends_on 'glibc' # R
|
||||
depends_on 'ncurses' # R
|
||||
depends_on 'pcre2' # R
|
||||
depends_on 'sqlite' # R
|
||||
|
||||
run_tests
|
||||
end
|
||||
@@ -1875,6 +1875,11 @@ url: https://github.com/sharkdp/fd/releases/
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
name: fdupes
|
||||
url: https://github.com/adrianlopezroche/fdupes
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
name: feh
|
||||
url: https://feh.finalrewind.org/
|
||||
activity: medium
|
||||
|
||||
Reference in New Issue
Block a user