From c298f672965f6a70bac5bcf0ea71a2b4c25ab7cb Mon Sep 17 00:00:00 2001 From: Danny Rawlins Date: Sat, 11 Feb 2017 12:44:28 +1100 Subject: [PATCH] gparted: initial import --- gparted/.footprint | 32 ++++++++++++++++++++++++++++++++ gparted/.md5sum | 1 + gparted/Pkgfile | 22 ++++++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 gparted/.footprint create mode 100644 gparted/.md5sum create mode 100644 gparted/Pkgfile diff --git a/gparted/.footprint b/gparted/.footprint new file mode 100644 index 000000000..d23afbc62 --- /dev/null +++ b/gparted/.footprint @@ -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 diff --git a/gparted/.md5sum b/gparted/.md5sum new file mode 100644 index 000000000..e72ea86a4 --- /dev/null +++ b/gparted/.md5sum @@ -0,0 +1 @@ +726f539f774b442670028af656f270bd gparted-0.27.0.tar.gz diff --git a/gparted/Pkgfile b/gparted/Pkgfile new file mode 100644 index 000000000..bb3c334fe --- /dev/null +++ b/gparted/Pkgfile @@ -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 +}