gparted: initial import

This commit is contained in:
Danny Rawlins 2017-02-11 12:44:28 +11:00
parent 45b360c5bf
commit c298f67296
3 changed files with 55 additions and 0 deletions

32
gparted/.footprint Normal file
View File

@ -0,0 +1,32 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/gparted
-rwxr-xr-x root/root usr/sbin/gpartedbin
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/appdata/
-rw-r--r-- root/root usr/share/appdata/gparted.appdata.xml
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/gparted.desktop
drwxr-xr-x root/root usr/share/icons/
drwxr-xr-x root/root usr/share/icons/hicolor/
drwxr-xr-x root/root usr/share/icons/hicolor/16x16/
drwxr-xr-x root/root usr/share/icons/hicolor/16x16/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/16x16/apps/gparted.png
drwxr-xr-x root/root usr/share/icons/hicolor/22x22/
drwxr-xr-x root/root usr/share/icons/hicolor/22x22/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/22x22/apps/gparted.png
drwxr-xr-x root/root usr/share/icons/hicolor/24x24/
drwxr-xr-x root/root usr/share/icons/hicolor/24x24/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/24x24/apps/gparted.png
drwxr-xr-x root/root usr/share/icons/hicolor/32x32/
drwxr-xr-x root/root usr/share/icons/hicolor/32x32/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/32x32/apps/gparted.png
drwxr-xr-x root/root usr/share/icons/hicolor/48x48/
drwxr-xr-x root/root usr/share/icons/hicolor/48x48/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/gparted.png
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/gparted.svg
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/gparted.8.gz

1
gparted/.md5sum Normal file
View File

@ -0,0 +1 @@
726f539f774b442670028af656f270bd gparted-0.27.0.tar.gz

22
gparted/Pkgfile Normal file
View File

@ -0,0 +1,22 @@
# Description: Gnome Partition Editor.
# URL: http://gparted.sourceforge.net/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: gtkmm intltool parted
name=gparted
version=0.27.0
release=1
source=(https://downloads.sourceforge.net/project/$name/$name/$name-$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-nls \
--disable-dependency-tracking \
--disable-doc
make
make DESTDIR=$PKG install
}