Search Criteria
Package Details: linux-apfs-rw-dkms-git 1:r298.3f9d529-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/linux-apfs-rw-dkms-git.git (read-only, click to copy) |
---|---|
Package Base: | linux-apfs-rw-dkms-git |
Description: | Experimental APFS kernel module with Write support (DKMS) |
Upstream URL: | https://github.com/linux-apfs/linux-apfs-rw |
Keywords: | apfs |
Licenses: | GPL-2.0-only |
Submitter: | None |
Maintainer: | HurricanePootis |
Last Packager: | HurricanePootis |
Votes: | 14 |
Popularity: | 0.85 |
First Submitted: | 2021-06-06 21:45 (UTC) |
Last Updated: | 2024-04-02 03:35 (UTC) |
Latest Comments
« First ‹ Previous 1 2 3
yan12125 commented on 2020-06-27 02:10 (UTC)
Gonna orphan this as I don't have an APFS partition anymore.
yan12125 commented on 2019-08-24 08:17 (UTC)
@ManU Thank you very much for the PKGBUILD! I've adopted your version and changed several other stuffs.
I've also add your AUR ID to a Contributor line. Please tell me if you want to use something else than your ID (e.g., name + email).
ManU commented on 2019-08-23 21:14 (UTC)
updated PKGBUILD to work again:
Maintainer: Chih-Hsuan Yen yan12125@archlinux.org
Forked from aur/linux-can-dkms
Contributor: Kyle Manna <kyle(at)kylemanna(dot)com>
pkgname=linux-apfs-oot-dkms-git pkgver=r4.6269eed pkgrel=1 pkgdesc="Experimental APFS kernel module (DKMS)" arch=('any') url="https://github.com/eafer/linux-apfs-oot" license=('GPL2') depends=('dkms') makedepends=('git') source=("git+https://github.com/eafer/linux-apfs-oot" 'dkms.conf' 'Makefile') sha256sums=('SKIP' '969ef32aab0f30471305e5d900cd28fc5ae91f976b6d55a5ad84c6034bb8c307' '2da469e30f0da44ed337d947c56718fb8df6c77243fd9f39a299155a8f48d286')
pkgver() { cd linux-apfs-oot printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" }
package() { # Copy Makefile and dkms.conf install -Dm644 Makefile "${pkgdir}"/usr/src/${pkgname}-${pkgver}/Makefile install -Dm644 dkms.conf "${pkgdir}"/usr/src/${pkgname}-${pkgver}/dkms.conf
# Set name and version sed -e "s/@PKGNAME@/${pkgname}/" \ -e "s/@PKGVER@/${pkgver}/" \ -i "${pkgdir}"/usr/src/${pkgname}-${pkgver}/dkms.conf
# Copy sources install -Ddm755 "${pkgdir}/usr/src/${pkgname}-${pkgver}/fs/apfs/" cp -dr --no-preserve=ownership linux-apfs-oot/* "${pkgdir}/usr/src/${pkgname}-${pkgver}/fs/apfs" }
« First ‹ Previous 1 2 3