blob: 050a49053e8d82e2da0b48adf11497b96c9fa689 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: robertfoster
# Contributor: <kfgz at interia dot pl>
pkgname=nwipe
pkgver=0.37
pkgrel=1
pkgdesc="A fork of the dwipe command that will securely erase disks using a variety of recognised methods"
arch=('i686' 'x86_64' 'aarch64')
url="http://www.andybev.com/index.php/Nwipe"
depends=('hdparm' 'libconfig' 'ncurses' 'parted')
optdepends=('coreutils' 'dmidecode' 'smartmontools')
license=('GPL2')
source=("https://github.com/martijnvanbrummelen/nwipe/archive/v${pkgver}.tar.gz")
build() {
cd "${srcdir}"/${pkgname}-${pkgver}
./autogen.sh
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}"/${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}
sha256sums=('a548bd097da491990d1b0db3fe0ed849340d89281badb46800d3a85ba7df89e0')
|