blob: 61d3e577909d24e1b547842c3d32fdcbeb01ed38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh
MAKEDEPS="make"
DEPS="skalibs"
PKG_VER=2.8.2.0
SOURCE=https://skarnet.org/software/execline/execline-$PKG_VER.tar.gz
DESC="A non-interactive shell-like scripting language"
build () {
./configure --enable-shared \
--enable-static \
--enable-allstatic \
--enable-static-libc \
--libdir=/usr/lib \
--with-dynlib=/usr/lib \
--enable-pedantic-posix
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|