summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Schaf2015-06-08 20:48:37 +0200
committerPhil Schaf2015-06-08 20:48:37 +0200
commit1709175f921da3203d64596d2c383e89c6f1d1a0 (patch)
tree8c62d86e802a10ccd6ebf0c40e35a0c10a6bda3b
downloadaur-1709175f921da3203d64596d2c383e89c6f1d1a0.tar.gz
aur4 support
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD19
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..514d64e36282
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = ttf-roboto-fontconfig
+ pkgdesc = A version of Google’s Roboto font that has fontconfig-compatible metadata
+ pkgver = 2.000980
+ pkgrel = 1
+ url = https://github.com/andreasf/Roboto
+ arch = any
+ license = Apache
+ provides = ttf-roboto
+ conflicts = ttf-roboto
+ source = https://github.com/andreasf/Roboto/archive/199ca7fcf1f0606106f8a93d13e42245729f9fcb.tar.gz
+ md5sums = 2ffb016cdf382640f4790573b378c69e
+
+pkgname = ttf-roboto-fontconfig
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..c2ffdc878a6e
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+pkgname=ttf-roboto-fontconfig
+_commit=199ca7fcf1f0606106f8a93d13e42245729f9fcb
+pkgver=2.000980
+pkgrel=1
+pkgdesc='A version of Google’s Roboto font that has fontconfig-compatible metadata'
+arch=('any')
+url='https://github.com/andreasf/Roboto'
+license=('Apache')
+provides=('ttf-roboto')
+conflicts=('ttf-roboto')
+source=("$url/archive/$_commit.tar.gz")
+md5sums=('2ffb016cdf382640f4790573b378c69e')
+
+package() {
+ cd "$srcdir/Roboto-$_commit"
+ _target="$pkgdir/usr/share/fonts/TTF/Roboto"
+ install -d "$_target"
+ install -m644 *.ttf "$_target"
+} \ No newline at end of file