mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-31 14:22:14 +01:00
Currently spl does not include ppc64le architecture. I just add support for this new platform. Other than that, spl autoconf files are old, thus, I need to call autoreconf, in order to get more update platforms config.
48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Maintainer:
|
|
|
|
pkgname=spl
|
|
pkgver=0.6.5.8
|
|
pkgrel=0
|
|
pkgdesc="Solaris Porting Layer (userland)"
|
|
url="http://zfsonlinux.org"
|
|
arch="x86 x86_64 aarch64 ppc64le"
|
|
license="GPL"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="$depends_dev linux-headers"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="https://github.com/zfsonlinux/zfs/releases/download/zfs-$pkgver/spl-$pkgver.tar.gz"
|
|
|
|
builddir="$srcdir"/spl-$pkgver
|
|
|
|
prepare() {
|
|
default_prepare || return 1
|
|
# Current package version does not contain information about ppc64le on
|
|
# config.sub.
|
|
update_config_sub
|
|
update_config_guess
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
--with-config=user \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="54b049cde051d0bd67f3f18ff58113c2 spl-0.6.5.8.tar.gz"
|
|
sha256sums="2d22117106782222d2b7da88cc657b7b9c44d281b1cc74d60761e52d33ab1155 spl-0.6.5.8.tar.gz"
|
|
sha512sums="4078bcc96c112f12129918583400d927d7dd56686c470dd9cb8fc6ba641dcb5afb044c95de02ac397909bb90f4c50d0aada91177ffed810883b5889610d8b0b4 spl-0.6.5.8.tar.gz"
|