diff options
author | Britney Fransen <brfransen@gmail.com> | 2012-03-12 21:26:10 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2012-03-12 21:26:10 (GMT) |
commit | 7219eb2f85b5c61f6708f277b5756db0c9fdb627 (patch) | |
tree | 65cd04f50dfe102bc7d74267f7e9f95aa7e46757 /abs/extra/ttf-liberation/PKGBUILD | |
parent | fd936e5ece64c337e9ce43bad28db35771d9d124 (diff) | |
download | linhes_pkgbuild-7219eb2f85b5c61f6708f277b5756db0c9fdb627.zip linhes_pkgbuild-7219eb2f85b5c61f6708f277b5756db0c9fdb627.tar.gz linhes_pkgbuild-7219eb2f85b5c61f6708f277b5756db0c9fdb627.tar.bz2 |
ttf-liberation: Initial inclusion. Needed for mythcenter* themes
Diffstat (limited to 'abs/extra/ttf-liberation/PKGBUILD')
-rw-r--r-- | abs/extra/ttf-liberation/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/abs/extra/ttf-liberation/PKGBUILD b/abs/extra/ttf-liberation/PKGBUILD new file mode 100644 index 0000000..572ae06 --- /dev/null +++ b/abs/extra/ttf-liberation/PKGBUILD @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: Ronald van Haren <ronald.archlinux.org> +# Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com> +# Contributor: Andreas Zwinkau +# Contributor: rabyte <rabyte__gmail> +# Contributor: Stefan Husmann < stefan-husmann@t-online.de> + +pkgname=ttf-liberation +pkgver=1.07.1 +pkgrel=2 +pkgdesc='Red Hats Liberation fonts.' +arch=('any') +license=('custom' 'GPL2') +url='https://www.redhat.com/promo/fonts/' +depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils') +makedepends=('fontforge') +install=ttf.install +source=("https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-ttf-$pkgver.tar.gz") +md5sums=('0be45d54cc5e1c2e3102e32b8c190346') + +package() { + cd "$srcdir/liberation-fonts-ttf-$pkgver" + + install -d "$pkgdir/usr/share/fonts/TTF/" + install -m644 *.ttf "$pkgdir/usr/share/fonts/TTF/" + + # install license + install -Dm644 "${srcdir}/liberation-fonts-ttf-${pkgver}/License.txt" \ + "${pkgdir}/usr/share/licenses/${pkgname}/License.txt" +} |