aboutsummaryrefslogtreecommitdiff
path: root/community/figlet
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-05-23 16:58:48 +0300
committerCem Keylan <cem@ckyln.com>2020-05-23 16:58:48 +0300
commita12c1608dbd371f2af95865ee20ef3b9b7ff249c (patch)
treef6d354b1f5ae6e653b0859a52d1a4f522d4870f5 /community/figlet
parent74ea7bde0ddfbf116fbff4dec2fb825b0006716d (diff)
downloadrepository-a12c1608dbd371f2af95865ee20ef3b9b7ff249c.tar.gz
figlet: POSIX sed
Diffstat (limited to 'community/figlet')
-rwxr-xr-xcommunity/figlet/build4
1 files changed, 3 insertions, 1 deletions
diff --git a/community/figlet/build b/community/figlet/build
index f604eb35..0c04856d 100755
--- a/community/figlet/build
+++ b/community/figlet/build
@@ -1,5 +1,7 @@
#!/bin/sh -e
-sed -i '/DECLS/d' utf8.h
+sed '/DECLS/d' utf8.h >_
+cat _ > utf8.h; rm -f _
+
make prefix=/usr
make prefix=/usr DESTDIR="$1" install