]> git.armaanb.net Git - asd-repo.git/blob - core/libuuid/build
5d5517036ea96995a4a4374f9428b83fe822e648
[asd-repo.git] / core / libuuid / build
1 #!/bin/sh -e
2
3 ./configure \
4     --prefix=/usr \
5     --localstatedir=/var \
6     --bindir=/usr/bin \
7     --sbindir=/usr/bin \
8     --libdir=/usr/lib \
9     --without-udev \
10     --without-python \
11     --without-systemd \
12                 --disable-all-programs \
13     --enable-libuuid
14
15 make
16 make DESTDIR="$1" install
17