Package Details: afflib 3.7.20-1

Git Clone URL: https://aur.archlinux.org/afflib.git (read-only, click to copy)
Package Base: afflib
Description: An extensible open format for the storage of disk images and related forensic information
Upstream URL: https://github.com/sshock/AFFLIBv3/
Licenses: custom
Submitter: watashi
Maintainer: silverhikari
Last Packager: silverhikari
Votes: 7
Popularity: 0.000001
First Submitted: 2015-10-04 02:15 (UTC)
Last Updated: 2023-05-17 23:29 (UTC)

Latest Comments

silverhikari commented on 2023-05-17 23:33 (UTC)

@hiyemwep autoconf and automake are part of the base-devel metapackage(formally a group), it is considered standard to install base-devel before working with the aur packages. because of this they are not considered needed to be added to the make dependencies

hiyemwep commented on 2023-05-17 14:21 (UTC)

The package requires GNU Autotools (autoconf and automake) for building, but they are not listed as dependencies.

arnonuehm66 commented on 2017-07-09 11:10 (UTC)

Use this `PKGBUILD` file to get newest `afflib v3.7.16`, which has no problem with `SSL_library_init in -lssl`! `PKGBUILD` ----------- # Maintainer: kfgz <kfgz at interia dot pl> # Contributor: Abakus <java5 at arcor dot de> # Contributor: watashi <zejun dot wu at gmail dot com> pkgname=afflib pkgver=3.7.16 pkgrel=1 pkgdesc="is an extensible open format for the storage of disk images and related forensic information." arch=('i686' 'x86_64') url="https://github.com/sshock/AFFLIBv3/releases" license=('custom') depends=('zlib' 'openssl' 'fuse') source=(https://github.com/sshock/AFFLIBv3/archive/v${pkgver}.tar.gz) md5sums=('776f09e1c98a63e1e7a16a52f56146fe') #prepare() { # cd "${srcdir}" # tar xvf libaff-${pkgver}.tar #} build() { cd "${srcdir}"/AFFLIBv3-${pkgver} sh bootstrap.sh ./configure --prefix=/usr --sysconfdir=/etc make } package() { cd "${srcdir}"/AFFLIBv3-${pkgver} make DESTDIR="${pkgdir}" install }

arnonuehm66 commented on 2017-07-07 09:02 (UTC)

checking for SSL_library_init in -lssl... no configure: error: OpenSSL developer library 'libssl-dev' or 'openssl-devel' not installed; cannot continue. Not solved yet.

bitwave commented on 2016-06-08 14:04 (UTC)

the repo location changed: https://github.com/sshock/AFFLIBv3