summaryrefslogtreecommitdiffstats
path: root/build
blob: d55b15da7ef044f7ca0ef1b4a6d205c0f7333207 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/make -f

include ../source.mk

V = $${OPK_SOURCE\#tcl}

nop:
	@:

configure:
	TCL_PACKAGE_PATH='$${TCL_LIBRARY}' \
	TCL_SHLIB_LD_EXTRAS='-Wl,-soname,$${TCL_LIB_FILE}' \
		oh-autoconfigure -s src/unix -B src/unix -- \
		--enable-shared \
		--enable-threads \
		--enable-dll-unloading \
		--disable-rpath \
		--enable-man-symlinks
	touch $@

build: configure
	oh-autobuild -s src/unix -B src/unix -- \
		TCL_LIBRARY='/usr/share/$(OPK_SOURCE)'
	touch $@

install: build
	oh-autoinstall -s src/unix -B src/unix -- \
		TCL_LIBRARY='/usr/share/$(OPK_SOURCE)' \
		MANN_INSTALL_DIR='$$(MAN_INSTALL_DIR)/man3'
	for dir in generic unix compat libtommath; do \
		mkdir -p dest/usr/include/$(OPK_SOURCE)/tcl-private/$${dir}; \
		cp src/$${dir}/*.h \
			dest/usr/include/$(OPK_SOURCE)/tcl-private/$${dir}; \
	done
	mv dest/usr/share/man/man1/tclsh.1 dest/usr/share/man/man1/tclsh.$(V).1
	oh-fixperms
	oh-strip
	oh-installfiles