summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO14
-rw-r--r--.gitignore3
-rw-r--r--LICENSE11
-rw-r--r--PKGBUILD19
4 files changed, 26 insertions, 21 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a3e753e79dea..ad66afbe92de 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,17 +1,15 @@
pkgbase = ttf-atarismall
pkgdesc = A very small 4x8 font, originally desinged for the Atari 800 terminal emulator
- pkgver = 2.1
- pkgrel = 1
- url = http://gnu.ethz.ch/linuks.mine.nu/atari/
+ pkgver = 2.2
+ pkgrel = 2
+ url = http://www.aiei.ch/atari/
install = ttf.install
arch = any
license = custom
- depends = fontconfig
- depends = xorg-font-utils
- source = http://gnu.ethz.ch/linuks.mine.nu/atari/AtariSmall.ttf
+ source = http://www.aiei.ch/atari/atarismall.ttf
source = LICENSE
- md5sums = c6438c0c44cd78dd94d81fe19501981d
- md5sums = d2d5d458e30a7143ec17383fee8f3b44
+ sha256sums = 5ff9b92e344c0de3b647de567a59e5ccf93ba2b127057824072c4c0a310a1eb1
+ sha256sums = a54bc430e906a8ae51fc0192ff0439deb686953de7b239f551a31757ee44d1ef
pkgname = ttf-atarismall
diff --git a/.gitignore b/.gitignore
index 62d30f9218cb..369a76fb4bc4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,5 @@
src/
pkg/
+
+*.ttf
+*.tar.xz \ No newline at end of file
diff --git a/LICENSE b/LICENSE
index c24e6ddc2ba1..eed67bd5a504 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,11 @@
+The atari-small.bdf is from
+http://hea-www.harvard.edu/~fine/Tech/x11fonts.html
+
+The license is like this
+
The following fonts are available for free, to use as you please.
The minimal license is included in the header of each font.
-
+
Copyright (c) 1999, Thomas A. Fine
License to copy, modify, and distribute for both commercial and
@@ -14,5 +19,5 @@ Produced with bdfedit, a tcl/tk font editing program
written by Thomas A. Fine
The atari-small.sfd is a fontforge native font created by me.
-Copyright (C) 2007 Gurkan Sengun
-Released under the same license as the original font.
+Copyright (C) 2007-2016 Gurkan Myczko
+Released under the same license as the original font. \ No newline at end of file
diff --git a/PKGBUILD b/PKGBUILD
index f2f289d2f195..6795e90d3e17 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,22 +1,21 @@
-# Maintainer: Marco Pompili <marcs.pompili@gmail.com>
-# Maintainer: TDY <tdy@gmx.com>
+# Maintainer: Marco Pompili <aur@mg.odd.red>
+# Contributor: TDY <tdy@gmx.com>
pkgname=ttf-atarismall
-pkgver=2.1
-pkgrel=1
+pkgver=2.2
+pkgrel=2
pkgdesc="A very small 4x8 font, originally desinged for the Atari 800 terminal emulator"
arch=('any')
-url="http://gnu.ethz.ch/linuks.mine.nu/atari/"
+url="http://www.aiei.ch/atari/"
license=('custom')
-depends=('fontconfig' 'xorg-font-utils')
install=ttf.install
-source=(http://gnu.ethz.ch/linuks.mine.nu/atari/AtariSmall.ttf
+source=(http://www.aiei.ch/atari/atarismall.ttf
LICENSE)
-md5sums=('c6438c0c44cd78dd94d81fe19501981d'
- 'd2d5d458e30a7143ec17383fee8f3b44')
+sha256sums=('5ff9b92e344c0de3b647de567a59e5ccf93ba2b127057824072c4c0a310a1eb1'
+ 'a54bc430e906a8ae51fc0192ff0439deb686953de7b239f551a31757ee44d1ef')
package() {
cd "$srcdir"
- install -Dm644 AtariSmall.ttf "$pkgdir/usr/share/fonts/TTF/AtariSmall.ttf"
+ install -Dm644 atarismall.ttf "$pkgdir/usr/share/fonts/TTF/atarismall.ttf"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}