Skip to content
This repository has been archived by the owner on Feb 25, 2023. It is now read-only.

Commit

Permalink
Add site metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
FooSoft committed Dec 15, 2021
1 parent 35175a5 commit fc7fd48
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
yomichan-gtk/yomichan-gtk*
yomichan/yomichan*
build
50 changes: 50 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
appname := yomichan-import
sources := $(wildcard *.go)

build = GOOS=$(1) GOARCH=$(2) go build -o build/$(appname)$(3)
tar = cd build && tar -cvzf $(appname)_$(1)_$(2).tar.gz $(appname)$(3) && rm $(appname)$(3)
zip = cd build && zip $(appname)_$(1)_$(2).zip $(appname)$(3) && rm $(appname)$(3)

.PHONY: all windows darwin linux clean

all: windows darwin linux

clean:
rm -rf build/

# linux builds
linux: build/$(appname)_linux_arm.tar.gz build/$(appname)_linux_arm64.tar.gz build/$(appname)_linux_386.tar.gz build/$(appname)_linux_amd64.tar.gz

build/$(appname)_linux_386.tar.gz: $(sources)
$(call build,linux,386,)
$(call tar,linux,386)

build/$(appname)_linux_amd64.tar.gz: $(sources)
$(call build,linux,amd64,)
$(call tar,linux,amd64)

build/$(appname)_linux_arm.tar.gz: $(sources)
$(call build,linux,arm,)
$(call tar,linux,arm)

build/$(appname)_linux_arm64.tar.gz: $(sources)
$(call build,linux,arm64,)
$(call tar,linux,arm64)

# darwin builds
darwin: build/$(appname)_darwin_amd64.tar.gz

build/$(appname)_darwin_amd64.tar.gz: $(sources)
$(call build,darwin,amd64,)
$(call tar,darwin,amd64)

# windows builds
windows: build/$(appname)_windows_386.zip build/$(appname)_windows_amd64.zip

build/$(appname)_windows_386.zip: $(sources)
$(call build,windows,386,.exe)
$(call zip,windows,386,.exe)

build/$(appname)_windows_amd64.zip: $(sources)
$(call build,windows,amd64,.exe)
$(call zip,windows,amd64,.exe)
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!-- +++
Area = "projects"
GitHub = "yomichan-import"
Layout = "page"
Tags = ["epwing", "golang", "japanese", "mit license", "yomichan", "zero-epwing"]
Description = "External dictionary importer for the Yomichan browser extension."
Collection = "ProjectsActive"
+++ -->

# Yomichan Import

Yomichan Import allows users of the [Yomichan](https://foosoft.net/projects/yomichan) extension to import custom dictionary files. It currently
Expand All @@ -20,7 +29,7 @@ Yomichan Import is being expanded to support other EPWING dictionaries based on
non-technical (although laborious) process that requires writing regular expressions and creating font tables; volunteer
contributions are welcome.

![](https://foosoft.net/projects/yomichan-import/img/import.png)
![](img/import.png)

## Installation

Expand Down
Binary file added img/import.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fc7fd48

Please sign in to comment.