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

# source: james
TARBALL= # in recipe
MD5SUM=  # in recipe
SRC_URL= # in recipe
BUNDLE=

SLACKREQ='python'
SLACKDESC="smem: smem $PKGVER (Memory Reporting Tool)
smem: 
smem: smem is a tool that can give numerous reports on memory usage on 
smem: Linux systems. Unlike existing tools, smem can report proportional 
smem: set size (PSS), which is a more meaningful representation of the 
smem: amount of memory used by libraries and applications in a virtual 
smem: memory system.
smem: 
smem: https://www.selenic.com/smem/
smem: 
smem: 
"
SLACKSUG="matplotlib"

### default pkg_download
### prepare
pkg_prepare() {
	: do nothing - source included in recipe
}

### default pkg_package
### build
pkg_build() {
	cd /tmp/pkg/smem*
	gcc -o smemcap smemcap.c &&
	install -m644 smem.8 /usr/share/man/man8 &&
	install -m755 smemcap smem /usr/bin &&
	pkg_build_slackdesc
}


