Initial package releases for APFS stuff
Includes spec files for linux-apfs-rw module and apfsprogs from GitHub:linux-apfs.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Licensed under GNU General Public License, version 3.
|
||||
# See the file https://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import kerneltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
KDIR = kerneltools.getKernelVersion()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/lib/modules/%s/extra" % KDIR, "*.ko")
|
||||
pisitools.dodoc("LICENSE", "README*")
|
||||
Reference in New Issue
Block a user