summaryrefslogtreecommitdiffstats
path: root/extra/parted
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-11 22:53:59 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-11 22:53:59 +0200
commit103bf8a94ba4cc6d0241d78ad3edf71d2ccb7db6 (patch)
treea477d5f2e8b7b48d1af1a1123da7ccc1034e8ebb /extra/parted
parentc78c2529428cff28cb445ce83bdac9bb2caac46f (diff)
downloadnutyx-extra-103bf8a94ba4cc6d0241d78ad3edf71d2ccb7db6.tar.gz
nutyx-extra-103bf8a94ba4cc6d0241d78ad3edf71d2ccb7db6.tar.bz2
nutyx-extra-103bf8a94ba4cc6d0241d78ad3edf71d2ccb7db6.tar.xz
nutyx-extra-103bf8a94ba4cc6d0241d78ad3edf71d2ccb7db6.zip
parted#1.8.8-2
Diffstat (limited to 'extra/parted')
-rw-r--r--extra/parted/.footprint38
-rw-r--r--extra/parted/.md5sum1
-rw-r--r--extra/parted/Pkgfile21
3 files changed, 60 insertions, 0 deletions
diff --git a/extra/parted/.footprint b/extra/parted/.footprint
new file mode 100644
index 000000000..1d4bbb65b
--- /dev/null
+++ b/extra/parted/.footprint
@@ -0,0 +1,38 @@
+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/gnu.h
+-rw-r--r-- root/root usr/include/parted/linux.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/
+lrwxrwxrwx root/root usr/lib/libparted-1.8.so.8 -> libparted-1.8.so.8.0.0
+-rwxr-xr-x root/root usr/lib/libparted-1.8.so.8.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-1.8.so.8.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/sbin/
+-rwxr-xr-x root/root usr/sbin/parted
+-rwxr-xr-x root/root usr/sbin/partprobe
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/info/
+-rw-r--r-- root/root usr/share/info/parted.info.gz
+drwxr-xr-x root/root usr/share/locale/
+drwxr-xr-x root/root usr/share/locale/fr/
+drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
+-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/parted.mo
+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/parted.8.gz
+-rw-r--r-- root/root usr/share/man/man8/partprobe.8.gz
diff --git a/extra/parted/.md5sum b/extra/parted/.md5sum
new file mode 100644
index 000000000..7da7fba0f
--- /dev/null
+++ b/extra/parted/.md5sum
@@ -0,0 +1 @@
+607ab4c3cfd8455af6588b97d99ad0ba parted-1.8.8.tar.bz2
diff --git a/extra/parted/Pkgfile b/extra/parted/Pkgfile
new file mode 100644
index 000000000..bf7020c75
--- /dev/null
+++ b/extra/parted/Pkgfile
@@ -0,0 +1,21 @@
+# Description: Librairies pour gparted
+# URL: http://www.gnu.org/software/parted/index.shtml
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=parted
+version=1.8.8
+release=2
+source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr \
+ --disable-debug \
+ --without-readline \
+ --disable-Werror
+ make
+ make DESTDIR=$PKG install
+ rm $PKG/usr/share/info/dir
+}