summaryrefslogtreecommitdiff
path: root/package/lvm/Makefile
diff options
context:
space:
mode:
authorwbx <wbx@hydrogenium.(none)>2009-05-17 14:41:34 +0200
committerwbx <wbx@hydrogenium.(none)>2009-05-17 14:41:34 +0200
commit219a6dab8995aad9ac4860cc1a84d6f3509a03a4 (patch)
treeb9c0f3c43aebba2fcfef777592d0add39f2072f4 /package/lvm/Makefile
Initial import
Diffstat (limited to 'package/lvm/Makefile')
-rw-r--r--package/lvm/Makefile34
1 files changed, 34 insertions, 0 deletions
diff --git a/package/lvm/Makefile b/package/lvm/Makefile
new file mode 100644
index 000000000..334ca3516
--- /dev/null
+++ b/package/lvm/Makefile
@@ -0,0 +1,34 @@
+# $Id$
+#-
+# 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:= lvm
+PKG_VERSION:= 2.02.45
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 440daa01b8f2ec4fe97b1cc621108220
+DISTFILES:= LVM2.${PKG_VERSION}.tgz
+MASTER_SITES:= ftp://sources.redhat.com/pub/lvm2/
+
+WRKDIST= ${WRKDIR}/LVM2.${PKG_VERSION}
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,LVM,lvm,${PKG_VERSION}-${PKG_RELEASE},${ARCH}))
+
+CONFIGURE_STYLE:= gnu
+CONFIGURE_ARGS+= --with-user="" --with-group="" \
+ --with-optimisation="" \
+ --with-lvm1=none \
+ --enable-static_link \
+ --with-kernel-dir=${LINUX_DIR}
+BUILD_STYLE:= auto
+INSTALL_STYLE:= auto
+
+post-install:
+ ${INSTALL_DIR} ${IDIR_LVM}/usr/sbin
+ ${INSTALL_BIN} ${WRKINST}/usr/sbin/lvm.static ${IDIR_LVM}/usr/sbin/lvm
+
+include ${TOPDIR}/mk/pkg-bottom.mk