initial commit
This commit is contained in:
commit
96b0f0317b
4 changed files with 54 additions and 0 deletions
11
.SRCINFO
Normal file
11
.SRCINFO
Normal file
|
@ -0,0 +1,11 @@
|
|||
pkgbase = ttf-uzura-font
|
||||
pkgdesc = A handwritten font, which is a little thicker and rounder than Azukifont
|
||||
pkgver = 1.00
|
||||
pkgrel = 1
|
||||
url = http://azukifont.com/font/uzura.html
|
||||
arch = any
|
||||
license = custom
|
||||
source = http://azukifont.com/font/uzurafont100.zip
|
||||
sha256sums = 0cc1589532bfd27d509af4d601b3d3d38fd2b50d8a16b625e9f6310973d19af3
|
||||
|
||||
pkgname = ttf-uzura-font
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
*
|
27
LICENSE
Normal file
27
LICENSE
Normal file
|
@ -0,0 +1,27 @@
|
|||
利用規約
|
||||
|
||||
「あずきフォント」「うずらフォント」は、フリーフォントですが著作権は放棄しておりません。
|
||||
フォントデータそのものを販売する行為、無断での再配布、フォントファイルの改変は禁止します。
|
||||
また、使用によるトラブル等には一切責任を持ちません。
|
||||
|
||||
ご自由にお使いいただけること
|
||||
|
||||
* サイト(個人・企業・アフィリエイトサイト・ネットショップ含)での使用。
|
||||
* 企業・学校等での印刷物、年賀状などの個人的使用。
|
||||
* お店などの販売促進用のPOP、チラシ、DM、メニュー、値札への使用。
|
||||
* バナーやロゴなどの素材(配布素材含む)への使用。
|
||||
* 同人誌、同人ゲーム(フォントデータを同梱するもの含)への使用。
|
||||
* 動画への文字入れ、歌詞表示などへの使用。
|
||||
* その他商用利用・メディア掲載等
|
||||
|
||||
基本的に、フォントデータそのものを配布するのでなければ、自由に使っていただいて問題ありません。
|
||||
リンク、或いはフォント名を紹介していただければ嬉しいですが、強制ではありません。
|
||||
メールかゲストブックでお知らせいただければ喜んで見に行きます。
|
||||
|
||||
尚、宗教関係での使用はご遠慮下さい。
|
||||
違法な出版物、メディアへの使用は禁止いたします。
|
||||
|
||||
あずき・うずらフォントは使用に際して一切金銭の要求をいたしません。
|
||||
利用料についてのお問い合わせに関しては返信いたしませんので予めご了承ください。
|
||||
|
||||
http://azukifont.com/kiyaku.html
|
15
PKGBUILD
Normal file
15
PKGBUILD
Normal file
|
@ -0,0 +1,15 @@
|
|||
# Maintainer: qwjyh <urataw421 at gmail dot com>
|
||||
|
||||
pkgname=ttf-uzura-font
|
||||
pkgver=1.00
|
||||
pkgrel=1
|
||||
pkgdesc="A handwritten font, which is a little thicker and rounder than Azukifont"
|
||||
arch=('any')
|
||||
url='http://azukifont.com/font/uzura.html'
|
||||
license=('custom')
|
||||
source=(http://azukifont.com/font/uzurafont100.zip)
|
||||
sha256sums=('0cc1589532bfd27d509af4d601b3d3d38fd2b50d8a16b625e9f6310973d19af3')
|
||||
|
||||
package() {
|
||||
install -Dm644 uzurafont100/*.ttf -t "$pkgdir"/usr/share/fonts/TTF
|
||||
}
|
Loading…
Reference in a new issue