#Maintainer 1: Tomoki Tsuchiya pkgname=steghide pkgver=0.5.1 pkgrel=1tt arch=i486 source=(http://prdownloads.sourceforge.net/steghide/steghide-0.5.1.tar.gz) sourcetemplate=http://people.salixos.org/tsuren/packages/13.37/$pkgname/ docs=("readme" "install" "copying" "changelog" "authors" "news") url=http://steghide.sourceforge.net/ slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "$pkgname (steganography application)" "Steghide is a steganography program that is able to hide data in" "various kinds of image- and audio-files. The color- respectivly" "sample-frequencies are not changed thus making the embedding" "resistant against first-order statistical tests. " ) build() { cd $startdir/src/$pkgname-$pkgver # patch from archlinux patch -p1 < $startdir/buildsystem.patch || return 1 # this patch courtesy gentoo bug tracker #178134 patch -Np1 -i $startdir/gcc-4.2.patch || return 1 patch -Np1 -i $startdir/steghide-climits.patch || return 1 autoreconf -i # now build it ./configure --prefix=/usr --libdir=/usr/lib${LIBDIRSUFFIX} --localstatedir=/var --sysconfdir=/etc make -j3 || return 1 make install DESTDIR=$startdir/pkg }