-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
updating to rillig/sfntly.git (from googlei18n/sfntly.git) #13
Comments
Thanks for the heads-up! I wonder if we can get #6 fixed. I'll see about updating |
let me check, fetch_sfntly() {
if [[ ! -d $SFNTLY_DIR ]]; then
log 'Fetching sfntly...'
# git clone https://github.com/googlei18n/sfntly.git "$SFNTLY_DIR"
git clone https://github.com/rillig/sfntly.git "$SFNTLY_DIR"
...
...
...
|
ok. slightly modified the setup for sfntly from https://github.com/rillig/sfntly.git fetch_sfntly() {
if [[ ! -d $SFNTLY_DIR ]]; then
log 'Fetching sfntly...'
# git clone https://github.com/googlei18n/sfntly.git "$SFNTLY_DIR"
git clone "https://github.com/rillig/sfntly.git" "$SFNTLY_DIR"
fi
}
....... and build_sfntly() {
log 'Building sfntly...'
(cd "$SFNTLY_DIR"/java && mvn compile)
}
...... and main() {
require_command 'git' &&
require_command 'java' &&
require_command 'javac' &&
require_command 'mvn' &&
......... next, after maven-building sfntly, the ConvertFont.class: ConvertFont.java
javac -cp .:../../vendor/sfntly/java/target/classes/com/google/typography/font/sfntly $<
....... compiled with linux Mint. seems fine. (or http://central.maven.org/maven2/com/jaredrummler/sfntly/1.0.1/sfntly-1.0.1.jar ) |
Great, feel free to submit a pull request. |
...I avoid pull requests like the plague ;) |
Leaving this open until I integrate this change. |
hi,
googlei18n/sfntly
is an archive for their old code,the new code is placed in
https://github.com/rillig/sfntly.git
(and I think it uses the same folder structure)
The text was updated successfully, but these errors were encountered: