fdupes: misc fixes.

This commit is contained in:
wertyi48 2013-07-17 23:45:57 -03:00
parent 483f5ae016
commit 4bed51c574

View file

@ -2,25 +2,21 @@
pkgname=fdupes pkgname=fdupes
version=1.51 version=1.51
revision=1 revision=1
build_style=gnu-makefile
distfiles="https://fdupes.googlecode.com/files/fdupes-${version}.tar.gz" distfiles="https://fdupes.googlecode.com/files/fdupes-${version}.tar.gz"
checksum="87dbc85b7b9cdb9626e713dd8078bd7487bceb58d47ceaff5404a9e6fd062881" checksum="87dbc85b7b9cdb9626e713dd8078bd7487bceb58d47ceaff5404a9e6fd062881"
build_style=gnu-makefile
only_for_archs="i686 x86_64"
maintainer="Steven R <strob AT styez DOT com>" maintainer="Steven R <strob AT styez DOT com>"
homepage="https://code.google.com/p/fdupes/" homepage="https://code.google.com/p/fdupes/"
license="MIT" license="MIT"
short_desc="Identifying or deleting duplicate files residing within specified directories" short_desc="Identifying or deleting duplicate files residing within specified directories"
do_install() { do_install() {
vmkdir "usr/bin" vinstall fdupes 755 usr/bin
vmkdir "usr/share/man/man1/" vinstall fdupes.1 644 usr/share/man/man1
vinstall "./fdupes" 755 "usr/bin"
vinstall "./fdupes.1" 644 "usr/share/man/man.1"
} }
fdupes_package() { fdupes_package() {
depends="glibc" pkg_install() {
pkg_install() { vmove all
vmove all }
} }
}