### this file is sourced not run
PKGVER=1.0
PKGBUILD=1
PKGARCH=x86_64

# source: james/jafadmin
TARBALL= # no tarball, source is in the recipe
MD5SUM=
SRC_URL=
BUNDLE=

SLACKREQ=
SLACKDESC="afo: afo $PKGVER (Aggressive File Obliterator)
afo:
afo: It overwrites files/directories with random gibberish then deletes
afo: them. Files deleted with this utility won't be recovered using
afo: undelete functions, recovery software, or dd/hexedit. It permanently
afo: obliterates your files to the point they are not recoverable.
afo:
afo: http://oldforum.puppylinux.com/puppy/viewtopic.php?p=834447#834447
afo:
afo:
afo:
"

### nothing to download
unset -f pkg_download

### prepare
pkg_prepare() {
	: nothing to prepare
}

### default pkg_package
### build
pkg_build() {
	cd /tmp/pkg
	gcc -Os -s -o /usr/bin/afo afo.c &&
	pkg_build_slackdesc
}

# vim:ft=sh:
