mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 09:17:16 +08:00
Add fdupes
This commit is contained in:
parent
65e494fbb6
commit
2f4a563e28
22
fdupes/LICENSE
Normal file
22
fdupes/LICENSE
Normal file
@ -0,0 +1,22 @@
|
||||
Legal Information
|
||||
--------------------------------------------------------------------
|
||||
FDUPES Copyright (c) 1999 Adrian Lopez
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation files
|
||||
(the "Software"), to deal in the Software without restriction,
|
||||
including without limitation the rights to use, copy, modify, merge,
|
||||
publish, distribute, sublicense, and/or sell copies of the Software,
|
||||
and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
21
fdupes/PKGBUILD
Normal file
21
fdupes/PKGBUILD
Normal file
@ -0,0 +1,21 @@
|
||||
pkgname=fdupes
|
||||
pkgver=1.40
|
||||
pkgrel=1
|
||||
pkgdesc="a program for identifying or deleting duplicate files residing within specified directories"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://code.google.com/p/fdupes/"
|
||||
license=('MIT')
|
||||
source=(http://fdupes.googlecode.com/files/$pkgname-$pkgver.tar.gz LICENSE)
|
||||
md5sums=('11de9ab4466089b6acbb62816b30b189' '47f17890218f832f870bf7a02eaeb017')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$pkgname-$pkgver
|
||||
install -d $pkgdir/usr/{share/man/man1,bin}
|
||||
|
||||
make
|
||||
}
|
||||
package(){
|
||||
cd $srcdir/$pkgname-$pkgver
|
||||
make INSTALLDIR=$pkgdir/usr/bin MANPAGEDIR=$pkgdir/usr/share/man install
|
||||
install -D -m644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
||||
}
|
Loading…
Reference in New Issue
Block a user