opt/libdevmapper/Pkgfile

27 lines
584 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Device Mapper for LVM
# URL: http://sources.redhat.com/dm/
# Maintainer: Simon Glo<6C>ner, viper at hometux dot de
2007-01-17 21:11:51 +01:00
# Packager: Mark Rosenstand, mark at borkware dot net
2006-02-23 16:26:10 +01:00
name=libdevmapper
2007-12-20 17:08:44 +01:00
version=1.02.24
release=1
source=(ftp://sources.redhat.com/pub/dm/device-mapper.$version.tgz)
2006-02-23 16:26:10 +01:00
build() {
cd device-mapper.$version
./configure \
--prefix=/usr \
--libdir=/lib \
--mandir=/usr/man \
2007-09-28 15:13:59 +02:00
--sbindir=/sbin \
2007-01-17 21:11:51 +01:00
--enable-pkgconfig \
2006-02-23 16:26:10 +01:00
--disable-nls \
2007-01-17 21:11:51 +01:00
--with-optimisation="$CFLAGS"
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2007-01-17 21:11:51 +01:00
find $PKG -type f -exec chmod u+w {} \;
2006-02-23 16:26:10 +01:00
}