summaryrefslogtreecommitdiff
path: root/package/parted/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'package/parted/Makefile')
-rw-r--r--package/parted/Makefile29
1 files changed, 29 insertions, 0 deletions
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