testdisk.mk (713B)
1 TARG = testdisk 2 DEPS = ncurses e2fsprogs ntfs3g 3 4 <$mkbuild/mk.common-noinst 5 6 testdisk:QV: 7 export CFLAGS="$CFLAGS $DEPS_CFLAGS" 8 export LDFLAGS="$LDFLAGS $DEPS_LDFLAGS" 9 CC="$CC" ./configure \ 10 --prefix="$PREFIX" \ 11 --mandir="$ROOT/share/man" \ 12 --disable-qt \ 13 --without-iconv \ 14 --without-reiserfs \ 15 --without-ewf \ 16 --without-jpeg \ 17 --without-ntfs \ 18 --with-ext2fs-lib="${e2fsprogs_libdir}" \ 19 --with-ext2fs-includes="${e2fsprogs_includedir}" \ 20 --with-ntfs3g-lib="${ntfs3g_libdir}" \ 21 --with-ntfs3g-includes="${ntfs3g_includedir}" \ 22 --with-ncurses-lib="${ncurses_libdir}" \ 23 --with-ncurses-includes="${ncurses_includedir}" 24 make -j$nprocs 25 26 install:QV: 27 make -j$nprocs install DESTDIR="$ROOT"