Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit 2b5c78c5d4
2 changed files with 37 additions and 0 deletions

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = scrub
pkgdesc = Iteratively writes patterns on files or disk devices to make retreiving the data more difficult
pkgver = 2.5.2
pkgrel = 1
url = http://code.google.com/p/diskscrub/
arch = i686
arch = x86_64
license = GPL
source = http://diskscrub.googlecode.com/files/scrub-2.5.2.tar.bz2
sha256sums = 51ee4963759cf07b186bb583ef2839618c1131bbbbdfae849ca76a2259cbc461
pkgname = scrub

24
PKGBUILD Normal file
View file

@ -0,0 +1,24 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=scrub
pkgver=2.5.2
pkgrel=1
pkgdesc="Iteratively writes patterns on files or disk devices to make retreiving the data more difficult"
arch=('i686' 'x86_64')
url="http://code.google.com/p/diskscrub/"
license=('GPL')
source=(http://diskscrub.googlecode.com/files/$pkgname-$pkgver.tar.bz2)
sha256sums=('51ee4963759cf07b186bb583ef2839618c1131bbbbdfae849ca76a2259cbc461')
build() {
cd ${srcdir}/$pkgname-$pkgver
./configure --prefix=/usr --mandir=/usr/share/man
make
}
package () {
cd ${srcdir}/$pkgname-$pkgver
make DESTDIR=${pkgdir} install
}