Advertisement
Guest User

safecopy-1.7-1-PKGBUILD

a guest
Mar 13th, 2012
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.64 KB | None | 0 0
  1. # Maintainer: Michal Donat <donny579@gmail.com>
  2. # Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
  3. # Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
  4.  
  5. pkgname=safecopy
  6. pkgver=1.7
  7. pkgrel=1
  8. pkgdesc="A disk data recovery tool to extract data from damaged media"
  9. arch=('i686' 'x86_64')
  10. url="http://safecopy.sourceforge.net/"
  11. license=('GPL')
  12. source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
  13. md5sums=('4213c03e9e6990ca9a288cc880526297')
  14.  
  15. build() {
  16.   cd $pkgname-$pkgver
  17.  
  18.   ./configure --prefix=/usr
  19.   make
  20. }
  21.  
  22. package () {
  23.   cd $pkgname-$pkgver
  24.  
  25.   make DESTDIR=${pkgdir} install
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement