mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
28 lines
855 B
Bash
28 lines
855 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Contributor: Jaroslaw Swierczynski <swiergot@juvepoland.com>
|
||
|
# Contributor: Jason Chu <jason@archlinux.org>
|
||
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||
|
|
||
|
pkgname=stegdetect
|
||
|
pkgver=0.6
|
||
|
pkgrel=1
|
||
|
pkgdesc="An automated tool for detecting steganographic content in images"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.outguess.org/"
|
||
|
license=('GPL')
|
||
|
depends=('glibc')
|
||
|
source=(http://www.outguess.org/$pkgname-$pkgver.tar.gz stegdetect.patch)
|
||
|
md5sums=('850a3551b5c450b9f450a919ad021767' 'bfc229e7d37745afe6073d269cff38c7')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
patch -Np1 -i ../stegdetect.patch || return 1
|
||
|
if [ "$CARCH" = "x86_64" ]; then
|
||
|
echo "AM_PROG_AS" >> configure.in
|
||
|
autoreconf -fi
|
||
|
fi
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make prefix=$startdir/pkg/usr install || return 1
|
||
|
}
|