contrib/ddrescue/Pkgfile

21 lines
589 B
Plaintext

# Description: ddrescue is a data recovery tool. It copies data from one file or block device (hard disc, cdrom, etc) to another, trying hard to rescue data in case of read errors.
# URL: https://www.gnu.org/software/ddrescue/ddrescue.html
# Maintainer: Danny Rawlins, crux at romster dot me
name=ddrescue
version=1.26
release=1
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.lz)
build() {
cd $name-$version
./configure --prefix=/usr
make CXXFLAGS="$CXXFLAGS" $MAKEFLAGS
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/info
find $PKG/usr/share -depth -empty -delete
}