summaryrefslogtreecommitdiff
path: root/strata/foundation/acl.morph
blob: 7f300b0de707194e4c89c301fe02bfd65e542cdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: acl
kind: chunk
install-commands:
- make DESTDIR="$DESTDIR" install-dev
post-install-commands:
- |
  if test -e "$DESTDIR/lib"; then
    mkdir -p "$DESTDIR"/usr/lib
    mv "$DESTDIR"/lib/* "$DESTDIR"/usr/lib/
    rm -r "$DESTDIR/lib"
  fi
  if test -e "$DESTDIR/lib64"; then
    mkdir -p "$DESTDIR"/usr/lib64
    mv "$DESTDIR"/lib64/* "$DESTDIR"/usr/lib64/
    rm -r "$DESTDIR/lib64"
  fi

- exit 1