e33f4d79e9
myrescue is a program to rescue the still-readable data from a damaged hard-disk, similar in purpose to dd_rescue. PR: 217433 Submitted by: Mageirias Anastasios <anastasios@mageirias.com> Reported by: Mageirias Anastasios <anastasios@mageirias.com> Reviewed by: feld, mat Approved by: feld, mat (mentors) Differential Revision: https://reviews.freebsd.org/D9845
23 lines
551 B
Makefile
23 lines
551 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= myrescue
|
|
PORTVERSION= 0.9.4
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}/
|
|
|
|
MAINTAINER= anastasios@mageirias.com
|
|
COMMENT= Rescue still-readable data from a damaged harddisk
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/../COPYING
|
|
|
|
WRKSRC_SUBDIR= src
|
|
|
|
PLIST_FILES= bin/myrescue \
|
|
man/man1/myrescue.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/myrescue ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/myrescue.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|