repo.or.cz
/
kiss-trunc88.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
pcre2: bump to 10.40
[kiss-trunc88.git]
/
nvi2
/
build
blob
0b832168d061a8d198abea6cb97feab76f357626
1
#!/bin/sh -e
2
3
export
DESTDIR
=
"
$1
"
4
5
cmake
-B
build \
6
-DCMAKE_INSTALL_PREFIX
=/
usr \
7
-DCMAKE_INSTALL_SYSCONFDIR
=/
etc \
8
-DCMAKE_BUILD_TYPE
=
None
9
10
cmake
--build
build
11
mkdir
-p
"
$1
/usr/bin"
12
mkdir
-p
"
$1
/usr/share/man/man1"
13
cp
build
/
nvi
"
$1
/usr/bin/nvi"
14
cp
man
/
vi
.1
"
$1
/usr/share/man/man1/"
15
16
cd
"
$1
/usr/bin"
17
ln
-s
"nvi"
"vi"