blob: cbfdf5527c7ffc61a817846803014449566e4c6a (
plain)
1 # Description: Replace Font Awesome with modern line icons
2 # URL: https://github.com/icons8/line-awesome
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4
5 name=ttf-line-awesome
6 version=1.2.1
7 release=2
8 source=(https://github.com/icons8/line-awesome/archive/v$version/$name-$version.tar.gz)
9
10 build() {
11 cd ${name/ttf-}-$version
12 install -d $PKG/usr/share/fonts/TTF/line-awesome/
13 install -m644 dist/line-awesome/fonts/*.ttf $PKG/usr/share/fonts/TTF/line-awesome/
14 }
|