Rework build process
Build/Publish XBPS / build-and-publish (push) Successful in 6s
Details
Build/Publish XBPS / build-and-publish (push) Successful in 6s
Details
This commit is contained in:
parent
b345a380cc
commit
f0513dce17
|
@ -36,20 +36,13 @@ jobs:
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
set -xeu
|
set -xeu
|
||||||
cp -f config.mk Makefile patches.h st-flexipatch/
|
make clean install DESTDIR="${GITHUB_WORKSPACE}/pkg" PREFIX="/usr"
|
||||||
flexipatch-finalizer/flexipatch-finalizer.sh -r -d st-flexipatch -o st-final
|
|
||||||
for patch in patches/*.diff; do
|
|
||||||
patch -d st-final <"$patch"
|
|
||||||
done
|
|
||||||
cp -f config.h st-final/
|
|
||||||
cd st-final && make clean install DESTDIR="${GITHUB_WORKSPACE}/pkg" PREFIX="/usr"
|
|
||||||
|
|
||||||
- name: Create package
|
- name: Create package
|
||||||
run: |
|
run: |
|
||||||
set -xeu
|
set -xeu
|
||||||
export XBPS_TARGET_ARCH=${{ env.ARCH }}
|
export XBPS_TARGET_ARCH=${{ env.ARCH }}
|
||||||
mkdir /target
|
mkdir /target && cd /target || exit 1
|
||||||
cd /target || exit 1
|
|
||||||
xbps-create -A ${{ env.ARCH }} \
|
xbps-create -A ${{ env.ARCH }} \
|
||||||
-H "${{ github.server_url }}/${{ github.repository }}" \
|
-H "${{ github.server_url }}/${{ github.repository }}" \
|
||||||
-l "${{ env.LICENSE }}" \
|
-l "${{ env.LICENSE }}" \
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
st-final
|
st-final
|
||||||
pkg
|
pkg
|
||||||
*.xbps
|
*.xbps
|
||||||
|
patch
|
||||||
|
FAQ
|
||||||
|
LEGACY
|
||||||
|
LICENSE
|
||||||
|
README
|
||||||
|
TODO
|
||||||
|
arg.h
|
||||||
|
config.def.h
|
||||||
|
config.h
|
||||||
|
config.mk
|
||||||
|
hb.c
|
||||||
|
hb.h
|
||||||
|
sixel.c
|
||||||
|
sixel.h
|
||||||
|
sixel_hls.c
|
||||||
|
sixel_hls.h
|
||||||
|
st.1
|
||||||
|
st.c
|
||||||
|
st.desktop
|
||||||
|
st.h
|
||||||
|
st.info
|
||||||
|
win.h
|
||||||
|
x.c
|
||||||
|
terminfo/s
|
||||||
|
|
59
Makefile
59
Makefile
|
@ -1,5 +1,7 @@
|
||||||
# st - simple terminal
|
# st - simple terminal
|
||||||
# See LICENSE file for copyright and license details.
|
# See LICENSE file for copyright and license details.
|
||||||
|
.PHONY: all clean install uninstall
|
||||||
|
|
||||||
.POSIX:
|
.POSIX:
|
||||||
|
|
||||||
include config.mk
|
include config.mk
|
||||||
|
@ -7,41 +9,46 @@ include config.mk
|
||||||
SRC = st.c x.c $(LIGATURES_C) $(SIXEL_C)
|
SRC = st.c x.c $(LIGATURES_C) $(SIXEL_C)
|
||||||
OBJ = $(SRC:.c=.o)
|
OBJ = $(SRC:.c=.o)
|
||||||
|
|
||||||
all: st
|
all: st terminfo
|
||||||
|
|
||||||
|
# TODO: Update command to update submodules
|
||||||
|
|
||||||
|
clean:
|
||||||
|
find . -maxdepth 1 -type f | grep -Pv "^\./\.|Makefile$$" | xargs -r rm
|
||||||
|
rm -r tmp patch terminfo 2>/dev/null || true
|
||||||
|
git -C st-flexipatch reset --hard HEAD
|
||||||
|
git -C st-flexipatch clean -fdx
|
||||||
|
|
||||||
|
buildroot:
|
||||||
|
cp config/patches.h st-flexipatch/patches.h
|
||||||
|
flexipatch-finalizer/flexipatch-finalizer.sh -r -d st-flexipatch -o tmp
|
||||||
|
rm -r tmp/Makefile
|
||||||
|
mv tmp/* ./
|
||||||
|
for patch in config/patches/*.diff; do patch <"$$patch"; done
|
||||||
|
|
||||||
|
config.mk:
|
||||||
|
cp config/config.mk ./config.mk
|
||||||
|
|
||||||
config.h:
|
config.h:
|
||||||
cp config.def.h config.h
|
cp config/config.h ./config.h
|
||||||
|
|
||||||
patches.h:
|
|
||||||
cp patches.def.h patches.h
|
|
||||||
|
|
||||||
|
*.c: buildroot
|
||||||
|
*.h: buildroot
|
||||||
.c.o:
|
.c.o:
|
||||||
$(CC) $(STCFLAGS) -c $<
|
$(CC) $(STCFLAGS) -c $<
|
||||||
|
|
||||||
st.o: config.h st.h win.h
|
st.o: buildroot config.h st.h win.h
|
||||||
x.o: arg.h config.h st.h win.h $(LIGATURES_H)
|
x.o: buildroot arg.h config.h st.h win.h $(LIGATURES_H)
|
||||||
|
|
||||||
$(OBJ): config.h config.mk patches.h
|
$(OBJ): config.h config.mk buildroot
|
||||||
|
|
||||||
st: $(OBJ)
|
st: buildroot $(OBJ)
|
||||||
$(CC) -o $@ $(OBJ) $(STLDFLAGS)
|
$(CC) -o $@ $(OBJ) $(STLDFLAGS)
|
||||||
|
|
||||||
clean:
|
terminfo: buildroot
|
||||||
rm -f st $(OBJ) st-$(VERSION).tar.gz
|
|
||||||
|
|
||||||
dist: clean
|
|
||||||
mkdir -p st-$(VERSION)
|
|
||||||
cp -R FAQ LEGACY TODO LICENSE Makefile README config.mk\
|
|
||||||
config.def.h st.info st.1 arg.h st.h win.h $(LIGATURES_H) $(SRC)\
|
|
||||||
st-$(VERSION)
|
|
||||||
tar -cf - st-$(VERSION) | gzip > st-$(VERSION).tar.gz
|
|
||||||
rm -rf st-$(VERSION)
|
|
||||||
|
|
||||||
terminfo:
|
|
||||||
mkdir terminfo
|
|
||||||
tic -sx -o terminfo st.info
|
tic -sx -o terminfo st.info
|
||||||
|
|
||||||
install: st
|
install: st terminfo
|
||||||
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
||||||
cp -f st $(DESTDIR)$(PREFIX)/bin
|
cp -f st $(DESTDIR)$(PREFIX)/bin
|
||||||
chmod 755 $(DESTDIR)$(PREFIX)/bin/st
|
chmod 755 $(DESTDIR)$(PREFIX)/bin/st
|
||||||
|
@ -50,9 +57,11 @@ install: st
|
||||||
chmod 644 $(DESTDIR)$(MANPREFIX)/man1/st.1
|
chmod 644 $(DESTDIR)$(MANPREFIX)/man1/st.1
|
||||||
mkdir -p $(DESTDIR)$(PREFIX)/share
|
mkdir -p $(DESTDIR)$(PREFIX)/share
|
||||||
cp -a terminfo $(DESTDIR)$(PREFIX)/share/terminfo
|
cp -a terminfo $(DESTDIR)$(PREFIX)/share/terminfo
|
||||||
|
chmod 755 $(DESTDIR)$(PREFIX)/share/terminfo/s
|
||||||
|
chmod 644 $(DESTDIR)$(PREFIX)/share/terminfo/s/st-*
|
||||||
# mkdir -p $(DESTDIR)$(PREFIX)/share/applications # desktop-entry patch
|
# mkdir -p $(DESTDIR)$(PREFIX)/share/applications # desktop-entry patch
|
||||||
# test -f ${DESTDIR}${PREFIX}/share/applications/st.desktop || cp -n st.desktop $(DESTDIR)$(PREFIX)/share/applications # desktop-entry patch
|
# test -f ${DESTDIR}${PREFIX}/share/applications/st.desktop || cp -n st.desktop $(DESTDIR)$(PREFIX)/share/applications # desktop-entry patch
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -f $(DESTDIR)$(PREFIX)/bin/st
|
rm -f $(DESTDIR)$(PREFIX)/bin/st
|
||||||
rm -f $(DESTDIR)$(MANPREFIX)/man1/st.1
|
rm -f $(DESTDIR)$(MANPREFIX)/man1/st.1
|
||||||
|
@ -64,5 +73,3 @@ uninstall:
|
||||||
rm -f $(DESTDIR)$(PREFIX)/share/terminfo/s/st-meta
|
rm -f $(DESTDIR)$(PREFIX)/share/terminfo/s/st-meta
|
||||||
rm -f $(DESTDIR)$(PREFIX)/share/terminfo/s/st-meta-256color
|
rm -f $(DESTDIR)$(PREFIX)/share/terminfo/s/st-meta-256color
|
||||||
rm -f $(DESTDIR)$(PREFIX)/share/terminfo/s/st-mono
|
rm -f $(DESTDIR)$(PREFIX)/share/terminfo/s/st-mono
|
||||||
|
|
||||||
.PHONY: all clean dist install uninstall
|
|
||||||
|
|
20
build.sh
20
build.sh
|
@ -1,20 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
cp -f config.mk Makefile patches.h st-flexipatch/
|
|
||||||
flexipatch-finalizer/flexipatch-finalizer.sh -r -d st-flexipatch -o st-final
|
|
||||||
git -C st-flexipatch reset --hard HEAD && git -C st-flexipatch clean -fd
|
|
||||||
for patch in patches/*.diff; do
|
|
||||||
patch -d st-final <"$patch"
|
|
||||||
done
|
|
||||||
cp -f config.h st-final/
|
|
||||||
cd st-final || exit 1
|
|
||||||
|
|
||||||
if [ "$1" = "-i" ]; then
|
|
||||||
sudo make install
|
|
||||||
elif [ "$1" = "-ti" ]; then
|
|
||||||
mkdir -p /usr/local/share/terminfo/s/
|
|
||||||
make terminfo
|
|
||||||
cp -a terminfo/s/* /usr/local/share/terminfo/s/
|
|
||||||
else
|
|
||||||
make
|
|
||||||
fi
|
|
Loading…
Reference in New Issue