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

# source: BLFS 11.3
TARBALL=py3c-$PKGVER.tar.gz
MD5SUM=53029afde7e0cf8672a2d69d378a0cfc
SRC_URL=https://github.com/encukou/py3c/archive/v$PKGVER/$TARBALL
BUNDLE=

SLACKREQ=
SLACKDESC="py3c: py3c $PKGVER (Convert C modules for Python3)
py3c: 
py3c: py3c helps you port C extensions to Python 3. It provides a detailed 
py3c: guide, and a set of macros to make porting easy and reduce 
py3c: boilerplate.
py3c: 
py3c: https://py3c.readthedocs.io/en/latest/index.html
py3c: 
py3c: 
py3c: 
py3c: 
"

### default pkg_download
### default pkg_prepare
### default pkg_package
### build
pkg_build() {
	cd /tmp/py3c* &&
	make install prefix=/usr &&

	# copy the docs
	mkdir -p /usr/share/doc/py3c &&
	install -m644 -v doc/source/* /usr/share/doc/py3c &&
	
	pkg_build_slackdesc
}


