Advertisement
Guest User

AUR nwipe-0.08

a guest
Apr 12th, 2012
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. # Maintainer: <whoever>
  2.  
  3. pkgname=nwipe
  4. pkgver=0.08
  5. pkgrel=1
  6. pkgdesc="A fork of the dwipe command used by Darik's Boot and Nuke (dban) that will securely erase disks using a variety of recognised methods."
  7. arch=('i686' 'x86_64')
  8. url="http://www.andybev.com/index.php/Nwipe"
  9. depends=('device-mapper' 'ncurses' 'parted')
  10. license=('GPL2')
  11. source=(${pkgname}-${pkgver}.tar.gz::http://sourceforge.net/projects/${pkgname}/files/${pkgname}-${pkgver}.tar.gz/download)
  12. md5sums=('14faf0542d607cb3ff95db4fba54b1d3')
  13.  
  14. build() {
  15. cd ${srcdir}/${pkgname}-${pkgver}
  16. ./configure --prefix=/usr
  17. make
  18. }
  19.  
  20. package() {
  21. cd ${srcdir}/${pkgname}-${pkgver}
  22. make DESTDIR=${pkgdir} install
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement