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

TARBALL=automake-1.14.1.tar.xz
MD5SUM=7fc29854c520f56b07aa232a0f880292
SRC_URL=http://distro.ibiblio.org/fatdog/source/710/clfs-packages-3.0.0.tar
BUNDLE=clfs-packages-3.0.0.tar

SLACKREQ=
SLACKDESC='automake: automake 1.14.1 (Makefiles generator)  
automake:  
automake: The Automake package contains programs for generating Makefiles for 
automake: use with Autoconf.  
automake: 
automake: 
automake: 
automake: 
automake: 
automake: 
automake:
'


### override download for LFS sources bundle
# $1-src-dir $2-tarball 
pkg_download() {
	echo downloading $BUNDLE for $TARBALL
	wget -P $1 $SRC_URL
	tar -xf $1/$BUNDLE --strip-components=1 -C $1 
	rm $1/$BUNDLE
}

### default pkg_prepare
### default pkg_package
### build
pkg_build() {
	CONFFLAGS="$CONFFLAGS --docdir=/usr/share/doc/automake-1.14.1"
	pkg_build_autoconf && pkg_build_slackdesc
}


