This commit is contained in:
poyraz76
2016-08-17 16:18:02 +03:00
parent 65fa6c5f96
commit 124ac61568
3 changed files with 64 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/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 pisitools
WorkDir = "."
def install():
pisitools.insinto("/", "./usr")
pisitools.insinto("/", "./etc")
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/python
import os
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
os.system("refind-install")
os.system("rm -rf /boot/efi/EFI/boot")
def preRemove():
pass
+39
View File
@@ -0,0 +1,39 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>refind</Name>
<Homepage>https://sourceforge.net/projects/refind/</Homepage>
<Packager>
<Name>Ergün Salman</Name>
<Email>poyraz76@pisilinux.org</Email>
</Packager>
<License>rEFIt</License>
<IsA>library</IsA>
<Summary>refind uefi multi boot</Summary>
<Description>refind uefi multi boot</Description>
<Archive sha1sum="4316f4cf99fa2578e5a102b8e75f1af4be601357" type="targz">https://sourceforge.net/projects/pisi-source/files/refind-0.10.3.tar.gz</Archive>
</Source>
<Package>
<Name>refind</Name>
<Files>
<Path fileType="library">/usr/*</Path>
<Path fileType="data">/etc/*</Path>
</Files>
<Provides>
<COMAR script="package.py">System.Package</COMAR>
</Provides>
</Package>
<History>
<Update release="1">
<Date>2016-07-30</Date>
<Version>0.10.3</Version>
<Comment>Relase Frist</Comment>
<Name>Ergün Salman</Name>
<Email>poyraz76@pisilinux.org</Email>
</Update>
</History>
</PISI>