2022-06-28 20:35:00 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-09-21 18:22:32 +02:00
|
|
|
echo "XXXXXXX warning: $0 is an ugly installer"
|
2022-06-28 20:35:00 +02:00
|
|
|
|
2022-09-21 18:24:03 +02:00
|
|
|
DESTDIR="/usr/local"
|
2022-06-28 20:35:00 +02:00
|
|
|
|
|
|
|
install -d $DESTDIR/lib/
|
|
|
|
install -m 0644 libtthimage.a $DESTDIR/lib/libtthimage.a
|
|
|
|
install -m 0644 tthimage.h $DESTDIR/include/tthimage.h
|
|
|
|
|
2022-09-21 18:22:32 +02:00
|
|
|
cp -v Datas/8x8thin Datas/16x24thin $DESTDIR/share/libimage/
|
2022-09-21 18:24:03 +02:00
|
|
|
cp -v Datas/8x8std Datas/16x24gruik $DESTDIR/share/libimage/
|
2022-09-16 14:22:16 +02:00
|
|
|
|
2022-06-28 20:35:00 +02:00
|
|
|
liste="genplot2 tga_cadre tga_effects tga_filtres tga_remap tga_tools \
|
|
|
|
tga_combine tga_television tga_dither tga_applymap tga_makehf15 \
|
2022-06-28 22:28:05 +02:00
|
|
|
tga_mires tga_incrust tga_pattern tga_equalize tga_alpha"
|
2022-06-28 20:35:00 +02:00
|
|
|
|
|
|
|
for binaire in $liste
|
|
|
|
do
|
2022-09-16 14:22:16 +02:00
|
|
|
install --strip Tools/$binaire $DESTDIR/bin/
|
2022-06-28 20:35:00 +02:00
|
|
|
done
|