gparted with additional dependencies.

This commit is contained in:
4fury-c3440d8
2021-01-11 18:08:41 +00:00
parent 02d680adb6
commit d876e877a0
24 changed files with 699 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
shelltools.system("./autogen.sh")
autotools.configure("--prefix=/usr")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("Changes", "COPYING", "README.md")
+38
View File
@@ -0,0 +1,38 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gpart</Name>
<Homepage>https://github.com/baruch/gpart</Homepage>
<Packager>
<Name>AYDIN ATMACA</Name>
<Email>aydinatmaca@gmail.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>hardware.disk</PartOf>
<Summary>Partition table rescue/guessing tool.</Summary>
<Description>Gpart is a small tool which tries to guess what partitions are on a PC type harddisk in case the primary partition table was damaged.</Description>
<Archive sha1sum="16eb8bcee2598e89fb62816aa625e61394dd73bc" type="targz">https://github.com/baruch/gpart/archive/0.3.tar.gz</Archive>
</Source>
<Package>
<Name>gpart</Name>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/sbin</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2021-01-12</Date>
<Version>0.3</Version>
<Comment>First Beta release.</Comment>
<Name>AYDIN ATMACA</Name>
<Email>aydinatmaca@gmail.com</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gpart</Name>
<Summary xml:lang="en">Partition table rescue/guessing tool</Summary>
<Description xml:lang="en">Gpart is a small tool which tries to guess what partitions are on a PC type harddisk in case the primary partition table was damaged.</Description>
</Source>
</PISI>