From 4f1a3cc196175a4afd5b8ac40d2edefef428f9ef Mon Sep 17 00:00:00 2001 From: Matt Housh Date: Wed, 27 Jun 2012 08:34:36 -0500 Subject: [PATCH] parted: new port, version 3.1 --- parted/.footprint | 34 ++++++++++++++++++++++++++++++++++ parted/.md5sum | 1 + parted/Pkgfile | 17 +++++++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 parted/.footprint create mode 100644 parted/.md5sum create mode 100644 parted/Pkgfile diff --git a/parted/.footprint b/parted/.footprint new file mode 100644 index 000000000..2501ab0af --- /dev/null +++ b/parted/.footprint @@ -0,0 +1,34 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/parted/ +-rw-r--r-- root/root usr/include/parted/constraint.h +-rw-r--r-- root/root usr/include/parted/debug.h +-rw-r--r-- root/root usr/include/parted/device.h +-rw-r--r-- root/root usr/include/parted/disk.h +-rw-r--r-- root/root usr/include/parted/exception.h +-rw-r--r-- root/root usr/include/parted/filesys.h +-rw-r--r-- root/root usr/include/parted/geom.h +-rw-r--r-- root/root usr/include/parted/natmath.h +-rw-r--r-- root/root usr/include/parted/parted.h +-rw-r--r-- root/root usr/include/parted/timer.h +-rw-r--r-- root/root usr/include/parted/unit.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libparted-fs-resize.a +-rwxr-xr-x root/root usr/lib/libparted-fs-resize.la +lrwxrwxrwx root/root usr/lib/libparted-fs-resize.so -> libparted-fs-resize.so.0.0.0 +lrwxrwxrwx root/root usr/lib/libparted-fs-resize.so.0 -> libparted-fs-resize.so.0.0.0 +-rwxr-xr-x root/root usr/lib/libparted-fs-resize.so.0.0.0 +-rw-r--r-- root/root usr/lib/libparted.a +-rwxr-xr-x root/root usr/lib/libparted.la +lrwxrwxrwx root/root usr/lib/libparted.so -> libparted.so.2.0.0 +lrwxrwxrwx root/root usr/lib/libparted.so.2 -> libparted.so.2.0.0 +-rwxr-xr-x root/root usr/lib/libparted.so.2.0.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libparted.pc +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man8/ +-rw-r--r-- root/root usr/man/man8/parted.8.gz +-rw-r--r-- root/root usr/man/man8/partprobe.8.gz +drwxr-xr-x root/root usr/sbin/ +-rwxr-xr-x root/root usr/sbin/parted +-rwxr-xr-x root/root usr/sbin/partprobe diff --git a/parted/.md5sum b/parted/.md5sum new file mode 100644 index 000000000..78b756d4b --- /dev/null +++ b/parted/.md5sum @@ -0,0 +1 @@ +5d89d64d94bcfefa9ce8f59f4b81bdcb parted-3.1.tar.xz diff --git a/parted/Pkgfile b/parted/Pkgfile new file mode 100644 index 000000000..e2047c059 --- /dev/null +++ b/parted/Pkgfile @@ -0,0 +1,17 @@ +# Description: A library and frontend to manipulate partition tables +# URL: http://www.gnu.org/software/parted/ +# Maintainer: Matt Housh, jaeger at morpheus dot net + +name=parted +version=3.1 +release=1 +source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz) + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --mandir=/usr/man + make + make DESTDIR=$PKG install + rm -rf $PKG/usr/share +}