contrib/ddrescue/Pkgfile

24 lines
678 B
Plaintext
Raw Normal View History

2007-12-05 10:58:20 +01:00
# 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: http://www.gnu.org/software/ddrescue/ddrescue.html
2008-03-26 03:45:31 +01:00
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: Danny Rawlins, monster dot romster at gmail dot com
2007-12-05 10:58:20 +01:00
name=ddrescue
version=1.13
2007-12-05 10:58:20 +01:00
release=1
2009-02-22 08:40:18 +01:00
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
2007-12-05 10:58:20 +01:00
build() {
2008-11-18 08:29:34 +01:00
cd $name-$version
2009-11-10 15:07:34 +01:00
sed -i -e '/^install : /s/all install-info install-man/all install-man/' \
Makefile.in
2009-11-10 15:07:34 +01:00
./configure \
--prefix=/usr \
--mandir=/usr/man
2007-12-05 10:58:20 +01:00
make
make DESTDIR=$PKG install
}