core updated.
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "linux-firmware"
|
||||
|
||||
def setup():
|
||||
# Remove source files
|
||||
shelltools.unlink("usbdux/*dux")
|
||||
shelltools.unlink("*/*.asm")
|
||||
|
||||
# These + a lot of other firmware are shipped within alsa-firmware
|
||||
for fw in ("ess", "korg", "sb16", "yamaha"):
|
||||
shelltools.unlinkDir(fw)
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.insinto("/lib/firmware", "mix/*")
|
||||
|
||||
# Remove installed and LIC* files from /lib/firmware
|
||||
pisitools.remove("/lib/firmware/GPL-3")
|
||||
pisitools.remove("/lib/firmware/LICENCE*")
|
||||
pisitools.remove("/lib/firmware/LICENSE*")
|
||||
pisitools.remove("/lib/firmware/configure")
|
||||
pisitools.remove("/lib/firmware/Makefile")
|
||||
pisitools.removeDir("/lib/firmware/mix")
|
||||
#conflict on alsa-firmware
|
||||
#pisitools.remove("/lib/firmware/ctefx.bin")
|
||||
pisitools.remove("/lib/firmware/ctspeq.bin")
|
||||
|
||||
# Install LICENSE files
|
||||
pisitools.dodoc("WHENCE", "LICENCE.*", "LICENSE.*", "GPL-3")
|
||||
Reference in New Issue
Block a user