Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
Add makefile --ignore-crystal-version to Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
hugopl committed Apr 11, 2021
1 parent d6dfc95 commit 2916170
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.5.1] - 2021-04-11
# Fixed
- Add makefile `--ignore-crystal-version` to Makefile

## [0.5.0] - 2021-04-11
### Added
Expand Down
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
.PHONY: all debug install install-fonts uninstall uninstall-fonts
.PHONY: all debug install install-fonts uninstall uninstall-fonts shardsinstall
PREFIX ?= /usr

all:
all: shardsinstall
shards build --release -s -Dpreview_mt

debug:
debug: shardsinstall
shards build --debug -Dpreview_mt

shardsinstall:
shards install --ignore-crystal-version

test:
# Some tests need en_US locale to pass on string to float convertions: "1.23" vs "1,23".
GC_DONT_GC=1 LC_ALL=en_US.UTF8 crystal spec
Expand Down
2 changes: 1 addition & 1 deletion packages/DEBIAN/control
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Architecture: amd64
Section: editors
Priority: optional
Homepage: https://github.com/hugopl/tijolo
Depends: libc6 (>=2.31), libgtksourceview-4-0, libgit2-28, libvte-2.91-0, libevent-pthreads-2.1-7, libeditorconfig0
Depends: libc6 (>=2.31), libgtksourceview-4-0, libgit2-28, libvte-2.91-0, libevent-pthreads-2.1-7, libeditorconfig0, fonts-font-awesome
Maintainer: Hugo Parente Lima <[email protected]>
Description: Lightweight, keyboard-oriented IDE for the masses.
A general purpose IDE written in Crystal using GTK3 with
Expand Down
5 changes: 2 additions & 3 deletions packages/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ FROM ubuntu:focal
RUN apt-get update
RUN DEBIAN_FRONTEND="noninteractive" apt-get install -y tzdata curl gpg && apt-get clean

# Add Crystal repository
RUN curl -L https://keybase.io/crystal/pgp_keys.asc | apt-key add -
RUN echo "deb https://dist.crystal-lang.org/apt crystal main" > /etc/apt/sources.list.d/crystal.list
RUN echo "deb https://dl.bintray.com/crystal/deb all stable" | tee /etc/apt/sources.list.d/crystal.list
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 379CE192D401AB61

# Setup build environment
RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: tijolo
version: 0.5.0
version: 0.5.1

authors:
- Hugo Parente Lima <[email protected]>
Expand Down

0 comments on commit 2916170

Please sign in to comment.