parted: new port, version 3.1

This commit is contained in:
Matt Housh 2012-06-27 08:34:36 -05:00
parent 26e307c24c
commit 4f1a3cc196
3 changed files with 52 additions and 0 deletions

34
parted/.footprint Normal file
View File

@ -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

1
parted/.md5sum Normal file
View File

@ -0,0 +1 @@
5d89d64d94bcfefa9ce8f59f4b81bdcb parted-3.1.tar.xz

17
parted/Pkgfile Normal file
View File

@ -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
}