blob: 6c5c89acadc69222bee83ac43b01b5ef4692a5fc (
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/bash
MAKEDEPS=(meson cmake)
DEPS=(glibc)
PKG_VER=2.0
SOURCE=http://dist.schmorp.de/libptytty/libptytty-$PKG_VER.tar.gz
DESC="Library for OS independent and secure pty/tty handling"
build () {
mkdir build &&
cd build &&
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DPT_UTMP_FILE:STRING=/run/utmp \
.. &&
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|