diff options
Diffstat (limited to 'extra/wipe/PKGBUILD')
-rw-r--r-- | extra/wipe/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/wipe/PKGBUILD b/extra/wipe/PKGBUILD new file mode 100644 index 000000000..95767e587 --- /dev/null +++ b/extra/wipe/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 103446 2010-12-19 16:53:45Z andrea $ +# Maintainer: +# Contributor: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Jason Chu <jason@archlinux.org> +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> + +pkgname=wipe +pkgver=2.3.1 +pkgrel=1 +pkgdesc="A file and block device wiping utility - a secure rm" +arch=('i686' 'x86_64') +url="http://wipe.sourceforge.net/" +license=('GPL') +depends=('glibc') +source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2) +md5sums=('3aed00711e0490edbec115bc283b8544') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr \ + --mandir=/usr/share/man + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make prefix=$pkgdir/usr mandir=$pkgdir/usr/share/man install +} |