File tree Expand file tree Collapse file tree 4 files changed +23
-0
lines changed Expand file tree Collapse file tree 4 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 22json-search : json-search.o
33 $(CC ) -ljson-c -std=c99 -Wall -Wextra json-search.o -o json-search
44
5+ appimagetool-x86_64.AppImage :
6+ wget https://github.com/AppImage/AppImageKit/releases/download/12/appimagetool-x86_64.AppImage
7+ chmod +x appimagetool-x86_64.AppImage
8+
9+ json-search-x86_64.AppImage : json-search appimagetool-x86_64.AppImage
10+ mkdir -p json-search.AppDir/usr/
11+ mkdir -p json-search.AppDir/usr/bin/
12+ mkdir -p json-search.AppDir/usr/lib/
13+ cp json-search json-search.AppDir/usr/bin/
14+ cp $(shell ldd json-search | grep json | cut -d ' ' -f 3) json-search.AppDir/usr/lib/
15+ ./appimagetool-x86_64.AppImage json-search.AppDir
16+
517clean :
618 rm json-search.o
719
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ " ${APPDIR} /usr/bin/json-search" " $@ "
Original file line number Diff line number Diff line change 1+ [Desktop Entry]
2+ Type =Application
3+ Name =json-search
4+ Exec =json-search
5+ Comment =grep into like, and format print
6+ Categories =Development;
7+ Terminal =true
8+ Icon =appimage-logo
You can’t perform that action at this time.
0 commit comments