- カルボナーラ
- 坦々麺
- ゴルゴンゾーラのスパゲティ
- つけ麺
- 中華そば
- 蕎麦
- 福岡うどん
- 讃岐うどん
- カレーつけ蕎麦
- 塩ラーメン
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- source/kernel.spec 2021-08-06 05:35:19.202753004 +0000 | |
+++ nishigori/kernel.spec 2021-08-06 06:09:24.573573006 +0000 | |
@@ -707,10 +707,12 @@ AutoReqProv: no\ | |
%if ! 0%{?fedora}\ | |
Requires(pre): %{_bindir}/find\ | |
Requires(post): %{_sbindir}/hardlink\ | |
+Requires: gcc\ | |
+%else\ | |
+Requires: gcc10\ | |
%endif\ |
TODOs:
BlockできるPlugin探す 候補:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%define gitflowver 1.6.1 | |
Name: gitflow | |
Version: %{gitflowver} | |
Release: 1%{?dist} | |
Summary: Extensions providing operations for V. Driessen's branching model | |
Group: Development/Tools | |
License: BSD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="symfony" default="main"> | |
<property name="appdir" value="${basedir}/app" /> | |
<available file="${basedir}/php-cs-fixer.phar" property="php-cs-fixer-exist" /> | |
<available file="${basedir}/composer.phar" property="composer-exist" /> | |
<target name="main" | |
description="Run almost task" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Remove previous configure cache | |
if [ "$1" = "-f" ]; then | |
make distclean || rm src/auto/config.cache | |
fi | |
# configure & make | |
./configure \ | |
--prefix=/usr/local \ |