blob: 901487dcbb3077f017c60315959cb5ea6d414264 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=ttf-liberation
pkgver=2.00.1
pkgrel=0
pkgdesc="Red Hats Liberation fonts"
url="https://fedorahosted.org/liberation-fonts/"
license="custom GPL2"
arch="noarch"
depends=""
makedepends=""
install=
source="https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-ttf-$pkgver.tar.gz"
_builddir="$srcdir"/liberation-fonts-ttf-$pkgver
build() {
return 0
}
package() {
cd "$_builddir"
install -d "$pkgdir"/usr/share/fonts/truetype/liberation
cp -a *.ttf "$pkgdir"/usr/share/fonts/truetype/liberation/
}
md5sums="5c781723a0d9ed6188960defba8e91cf liberation-fonts-ttf-2.00.1.tar.gz"
|