efi
This commit is contained in:
Executable
+25
@@ -0,0 +1,25 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def build():
|
||||
shelltools.export("CFLAGS", "-Os")
|
||||
autotools.make("all")
|
||||
|
||||
def install():
|
||||
pisitools.dosed("Makefile","BINDIR := /usr/sbin","BINDIR := %s/usr/sbin" % get.installDIR())
|
||||
shelltools.makedirs("%s/usr/sbin" % get.installDIR())
|
||||
shelltools.makedirs("%s/usr/lib" % get.installDIR())
|
||||
shelltools.makedirs("%s/usr/share/man" % get.installDIR())
|
||||
shelltools.makedirs("%s/usr/include" % get.installDIR())
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.insinto("/usr/lib", "src/lib/*.o")
|
||||
pisitools.insinto("/usr/share/man", "src/man/*")
|
||||
pisitools.insinto("/usr/include", "src/include/*.h")
|
||||
Executable
+48
@@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>efibootmgr</Name>
|
||||
<Homepage>https://github.com/vathpela/efibootmgr</Homepage>
|
||||
<Packager>
|
||||
<Name>Aydın Demirel</Name>
|
||||
<Email>aydin.demirel@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Tool to modify UEFI Firmware Boot Manager Variables</Summary>
|
||||
<Description>a Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager.</Description>
|
||||
<Archive sha1sum="1a4c2792d0f8f4db2b18882803a99132c7a4f3a3" type="targz">http://source.pisilinux.org/1.0/efibootmgr.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>pciutils</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>efivar</Dependency>
|
||||
<Dependency>efivar-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>efibootmgr</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="library">/usr/lib/*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>efibootmgr-devel</Name>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2014-09-27</Date>
|
||||
<Version>0.7.0.16</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Aydın Demirel</Name>
|
||||
<Email>aydin.demirel@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
Executable
+8
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>efibootmgr</Name>
|
||||
<Summary xml:lang="tr">UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç</Summary>
|
||||
<Description xml:lang="tr">UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Executable
+18
@@ -0,0 +1,18 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def build():
|
||||
shelltools.export("CFLAGS", "-Os")
|
||||
pisitools.dosed("Make.defaults","-O0","-Os")
|
||||
autotools.make("libdir=/usr/lib bindir=/usr/bin")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s libdir=/usr/lib/" % get.installDIR())
|
||||
Executable
+50
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>efivar</Name>
|
||||
<Homepage>https://github.com/vathpela/efivar</Homepage>
|
||||
<Packager>
|
||||
<Name>Aydın Demirel</Name>
|
||||
<Email>aydin.demirel@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPL2.1</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Tools and library to manipulate EFI variables</Summary>
|
||||
<Description>Tools and library to manipulate EFI variables.</Description>
|
||||
<Archive sha1sum="db9553acd4ac3fc39ed2bb3078da17348646d8ea" type="tarbz2">https://github.com/rhinstaller/efivar/releases/download/0.15/efivar-0.15.tar.bz2</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>efivar</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>efivar-devel</Name>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2015-02-21</Date>
|
||||
<Version>0.15</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2014-09-27</Date>
|
||||
<Version>0.10.8</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Aydın Demirel</Name>
|
||||
<Email>aydin.demirel@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
Executable
+8
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>efivar</Name>
|
||||
<Summary xml:lang="tr">EFI değişkenlerini işlemek için araçlar ve kütüphane</Summary>
|
||||
<Description xml:lang="tr">EFI değişkenlerini işlemek için araçlar ve kütüphane</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user