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. }