summaryrefslogtreecommitdiff
path: root/package/parted
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-11-20 20:23:01 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2009-11-20 20:23:01 +0100
commitb465429a7e4a1f336947ec59ef5f660db85022f0 (patch)
tree45ed682ea3d7164cb70c4a2f19becf38cd957315 /package/parted
parent96bc4e2dbfe9ea192ffd0762093cc38c80f789c1 (diff)
fix more uclibc bulk build errors and add sfdisk/parted
- add sfdisk and parted for nfsroot installations to cfdisk - fix more uclibc bulk build errors
Diffstat (limited to 'package/parted')
-rw-r--r--package/parted/Config.in7
-rw-r--r--package/parted/Makefile29
2 files changed, 36 insertions, 0 deletions
diff --git a/package/parted/Config.in b/package/parted/Config.in
new file mode 100644
index 000000000..05b8974be
--- /dev/null
+++ b/package/parted/Config.in
@@ -0,0 +1,7 @@
+config ADK_PACKAGE_PARTED
+ prompt "parted............................ GNU parted"
+ tristate
+ default n
+ select ADK_PACKAGE_LIBUUID
+ help
+ GNU parted.
diff --git a/package/parted/Makefile b/package/parted/Makefile
new file mode 100644
index 000000000..153f88c71
--- /dev/null
+++ b/package/parted/Makefile
@@ -0,0 +1,29 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= parted
+PKG_VERSION:= 1.9.0
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 055305bc7bcf472ce38f9abf69a9d94d
+PKG_DESCR:= GNU parted
+PKG_DEPENDS:= libuuid
+PKG_SECTION:= admin
+PKG_URL:= http://www.gnu.org/software/parted/index.shtml
+PKG_SITES:= ${MASTER_SITE_GNU:=parted/}
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,PARTED,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_STYLE:= gnu
+BUILD_STYLE:= auto
+INSTALL_STYLE:= auto
+
+post-install:
+ ${INSTALL_DIR} $(IDIR_PARTED)/usr/sbin $(IDIR_PARTED)/usr/lib
+ ${CP} $(WRKINST)/usr/lib/libparted*so* $(IDIR_PARTED)/usr/lib
+ ${INSTALL_BIN} $(WRKINST)/usr/sbin/parted $(IDIR_PARTED)/usr/sbin
+
+include ${TOPDIR}/mk/pkg-bottom.mk