diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/sleuthkit |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/sleuthkit')
-rw-r--r-- | community/sleuthkit/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/community/sleuthkit/PKGBUILD b/community/sleuthkit/PKGBUILD new file mode 100644 index 000000000..cf86c3ac8 --- /dev/null +++ b/community/sleuthkit/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 32586 2010-11-15 00:28:04Z lfleischer $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr> + +pkgname=sleuthkit +pkgver=3.2.0 +pkgrel=1 +pkgdesc='File system and media management forensic analysis tools.' +arch=('i686' 'x86_64') +url='http://www.sleuthkit.org/sleuthkit' +license=('GPL2' 'CPL' 'custom:"IBM Public Licence"') +depends=('perl') +options=('!libtool') +source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('05517963942aa92be77c05ca1c47f0de') + +build() { + cd "${pkgname}-${pkgver}" + + ./configure --without-afflib --without-ewf --prefix=/usr + make LDFLAGS+="-lpthread -ldl" +} + +package() { + cd "${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install + + # licenses + install -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -Dm0644 licenses/* "${pkgdir}/usr/share/licenses/${pkgname}" +} |