forked from ports/contrib
20 lines
433 B
Plaintext
20 lines
433 B
Plaintext
# Description: Logical volume management for Linux
|
|
# URL: http://sources.redhat.com/dm/
|
|
# Maintainer: Mark Rosenstand <mark@borkware.net>
|
|
|
|
name=device-mapper
|
|
version=1.02.14
|
|
release=1
|
|
source=(ftp://sources.redhat.com/pub/dm/device-mapper.$version.tgz)
|
|
|
|
build() {
|
|
cd device-mapper.$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--exec-prefix= \
|
|
--enable-pkgconfig \
|
|
--with-optimisation="$CFLAGS"
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|