ddrescue
This commit is contained in:
parent
bc3e8896c9
commit
14ea234b70
|
@ -0,0 +1,21 @@
|
||||||
|
diff --git a/Makefile b/Makefile
|
||||||
|
index f891255..1899f34 100644
|
||||||
|
--- a/Makefile
|
||||||
|
+++ b/Makefile
|
||||||
|
@@ -50,15 +50,7 @@ else
|
||||||
|
HAVE_LZO=0
|
||||||
|
endif
|
||||||
|
|
||||||
|
-ifeq ($(shell grep 'HAVE_LIBCRYPTO 1' config.h >/dev/null 2>&1 && echo 1), 1)
|
||||||
|
- OTHTARGETS += pbkdf2
|
||||||
|
- AES_OSSL_PO = aes_ossl.po
|
||||||
|
- AES_OSSL_O = aes_ossl.o
|
||||||
|
- CRYPTOLIB = -lcrypto
|
||||||
|
- HAVE_OPENSSL=1
|
||||||
|
-else
|
||||||
|
- HAVE_OPENSSL=0
|
||||||
|
-endif
|
||||||
|
+HAVE_OPENSSL=0
|
||||||
|
|
||||||
|
ifeq ($(CC),wcl386)
|
||||||
|
CFLAGS = "-ox -wx $(EXTRA_CFLAGS)"
|
|
@ -0,0 +1,23 @@
|
||||||
|
# Tanım: dd komutunun veri kurtarma amaçlı kullanılan sürümü
|
||||||
|
# URL: http://www.garloff.de/kurt/linux/ddrescue/
|
||||||
|
# Paketçi: milisarge
|
||||||
|
# Gerekler:
|
||||||
|
# Grup: sistem
|
||||||
|
|
||||||
|
isim=ddrescue
|
||||||
|
surum=1.99.8
|
||||||
|
devir=1
|
||||||
|
kaynak=(http://www.garloff.de/kurt/linux/ddrescue/dd_rescue-$surum.tar.bz2{,.asc}
|
||||||
|
dd_rescue-1.99-disable-openssl.patch)
|
||||||
|
|
||||||
|
derle() {
|
||||||
|
cd dd_rescue-$surum
|
||||||
|
autoreconf -fi
|
||||||
|
# Don't install to /usr/lib64
|
||||||
|
sed -i '/LIB = lib64/d' Makefile
|
||||||
|
# Disable OpenSSL support
|
||||||
|
patch -p1 -i ../dd_rescue-1.99-disable-openssl.patch
|
||||||
|
./configure
|
||||||
|
make
|
||||||
|
make DESTDIR="$PKG" INSTALLDIR="$PKG/usr/bin" install
|
||||||
|
}
|
Loading…
Reference in New Issue