mirror of https://github.com/archzfs/zfs-dkms
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.5 KiB
38 lines
1.5 KiB
6 years ago
|
# Maintainer: Jesus Alvarez <jeezusjr at gmail dot com>
|
||
|
#
|
||
|
# This PKGBUILD was generated by the archzfs build scripts located at
|
||
|
#
|
||
|
# http://github.com/archzfs/archzfs
|
||
|
#
|
||
|
#
|
||
|
pkgname="zfs-dkms"
|
||
|
pkgdesc="Kernel modules for the Zettabyte File System."
|
||
|
|
||
|
pkgver=0.7.9
|
||
|
pkgrel=1
|
||
|
makedepends=()
|
||
|
arch=("x86_64")
|
||
|
url="http://zfsonlinux.org/"
|
||
|
source=("https://github.com/zfsonlinux/zfs/releases/download/zfs-0.7.9/zfs-0.7.9.tar.gz")
|
||
|
sha256sums=("f50ca2441c6abde4fe6b9f54d5583a45813031d6bb72b0011b00fc2683cd9f7a")
|
||
|
license=("CDDL")
|
||
|
depends=('spl-dkms' "zfs-utils-common=0.7.9" "lsb-release")
|
||
|
provides=("zfs")
|
||
|
groups=("archzfs-dkms")
|
||
|
conflicts=('zfs-dkms-git' 'zfs-archiso-linux' 'zfs-archiso-linux-git' 'zfs-linux-hardened' 'zfs-linux-hardened-git' 'zfs-linux-lts' 'zfs-linux-lts-git' 'zfs-linux' 'zfs-linux-git' 'zfs-linux-vfio' 'zfs-linux-vfio-git' 'zfs-linux-zen' 'zfs-linux-zen-git' 'zfs-archiso-linux-headers' 'zfs-archiso-linux-git-headers' 'zfs-linux-hardened-headers' 'zfs-linux-hardened-git-headers' 'zfs-linux-lts-headers' 'zfs-linux-lts-git-headers' 'zfs-linux-headers' 'zfs-linux-git-headers' 'zfs-linux-vfio-headers' 'zfs-linux-vfio-git-headers' 'zfs-linux-zen-headers' 'zfs-linux-zen-git-headers' )
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/zfs-0.7.9"
|
||
|
./autogen.sh
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
dkmsdir="${pkgdir}/usr/src/zfs-0.7.9"
|
||
|
install -d "${dkmsdir}"
|
||
|
cp -a ${srcdir}/zfs-0.7.9/. ${dkmsdir}
|
||
|
cd "${dkmsdir}"
|
||
|
find . -name ".git*" -print0 | xargs -0 rm -fr --
|
||
|
scripts/dkms.mkconf -v 0.7.9 -f dkms.conf -n zfs
|
||
|
chmod g-w,o-w -R .
|
||
|
}
|