Package Details: isa-l 2.31.1-1

Git Clone URL: https://aur.archlinux.org/isa-l.git (read-only, click to copy)
Package Base: isa-l
Description: A collection of optimized low-level functions targeting storage applications
Upstream URL: https://github.com/intel/isa-l
Keywords: code compression crc deflate erasure gzip raid zlib
Licenses: BSD
Submitter: afsio
Maintainer: afsio (gbtucker, pdelarag)
Last Packager: pdelarag
Votes: 3
Popularity: 0.80
First Submitted: 2017-10-12 00:02 (UTC)
Last Updated: 2025-01-13 15:15 (UTC)

Latest Comments

fft commented on 2025-01-27 16:51 (UTC)

Hello, thank you for packaging.

I have trouble with libisal.pc - in refers to build directory instead of install dir. Can you please fix this? Seems ./configure without prefix and make install DESTDIR="${pkgdir}"works.

Also propose to update license field according to modern guidelines (https://wiki.archlinux.org/title/PKGBUILD#license).

patchelf seems no more needed (I checked, that file didn't changed), but help2man is needed for make man pages.

Example of updated PKGBUILD:


# Maintainer: Roy Oursler <roy.j.oursler@intel.com>
pkgname=isa-l
pkgver=2.31.1
pkgrel=2
pkgdesc="A collection of optimized low-level functions targeting storage applications"
arch=(x86_64)
url="https://github.com/intel/$pkgname"
license=('BSD-3-Clause')
makedepends=('help2man' 'nasm')
source=("$url/archive/v$pkgver.tar.gz")
sha1sums=('6ff9da63837cab5233925b63461d85c91c3c66f8')

build() {
    cd "${srcdir}/$pkgname-$pkgver"
    ./autogen.sh
    ./configure -q

    make
}

check() {
    cd "${srcdir}/$pkgname-$pkgver"
    make check
}

package() {
    cd "${srcdir}/$pkgname-$pkgver"
    make install DESTDIR="${pkgdir}"
    mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
    install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}