commit 1f7839f

chld  ·  2026-09-09 23:07:05 +0000 UTC
parent 5685b63
mlterm: remove
3 files changed,  +0, -62
+0, -1
1@@ -1 +0,0 @@
2-.ncurses
+0, -6
1@@ -1,6 +0,0 @@
2-name: mlterm
3-description: multi lingual terminal emulator
4-license:
5-upstream:
6-version: git
7-maintainer:
+0, -55
 1@@ -1,55 +0,0 @@
 2-#!/bin/sh -ue
 3-NAME=mlterm
 4-VERSION=git
 5-RELEASE=1
 6-SOURCE="https://github.com/arakiken/${NAME}"
 7-
 8-build(){
 9-    gmake clean
10-    CFLAGS='-static -O3 -pipe' LDFLAGS='-static' ./configure \
11-	  --prefix=/ \
12-	  --libdir=/lib \
13-	  --bindir=/bin \
14-	  --enable-silent-rules \
15-	  --sbindir=/sbin \
16-	  --without-gnu-ld \
17-	  --without-x \
18-	  --sysconfdir=/etc \
19-	  --enable-static \
20-	  --enable-server-static=yes \
21-	  --disable-hw-x11 \
22-	  --disable-hw-xft \
23-	  --disable-shared \
24-	  --disable-dlopen \
25-	  --disable-frbidi \
26-	  --disable-dl-ctl \
27-	  --enable-static \
28-	  --disable-ssh2 \
29-	  --disable-shared \
30-	  --with-scrollbars \
31-	  --with-tools \
32-	  --disable-dnd \
33-	  --disable-iiimf \
34-	  --disable-ibus \
35-	  --disable-skk \
36-	  --disable-canna \
37-	  --disable-wnn \
38-	  --without-gtl \
39-	  --without-map-table \
40-	  --without-prop-table \
41-	  --disable-dl-type \
42-	  --disable-anti-alias \
43-	  --disable-daemon \
44-	  --disable-zmodem \
45-	  --disable-multi-canvas \
46-	  --with-gui=fb || die 'configure failed'
47-
48-    sed -i 's/gcc/gcc -static/g' `find . -name Makefile -type f`
49-    sed -i 's/--mode=link/--mode=link --tag=CC/g' `find . -name Makefile -type f`
50-    sed -i 's/g++/g++ -static/g' `find . -name Makefile -type f`
51-    
52-    gmake LDFLAGS='-static -all-static --tag=CC' CFLAGS="-I$SRC/baselib/include -I$SRC/encodefilter/include -I$SRC/libind -I$SRC/vtemu -static -O3 -pipe" || die 'gmake failed'
53-    gmake LDFLAGS='-static' CFLAGS='-static -O3 -pipe' DESTDIR="$PKG" install || die 'install failed'
54-}
55-
56-. ${0%/*}/../../libsh/libdmake.sh