File: bootstrap

package info (click to toggle)
lksctp-tools 1.0.18%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 1,324 kB
  • sloc: ansic: 13,562; makefile: 270; sh: 26
file content (13 lines) | stat: -rwxr-xr-x 259 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash
# -*- sh -*-
set -ex					# exit on error
libtoolize --force --copy
aclocal
autoheader
automake --foreign --add-missing --copy
autoconf
if [ "$1" = "-a" ]; then
	./configure --prefix=/usr --enable-shared --enable-static
	make
	make dist
fi