blob: 90c66ba74c86e93a893d49a8d1c67bb3150857ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
name=font-awesome
version=6.7.2
release=1
source="https://github.com/FortAwesome/Font-Awesome/archive/${version}/Font-Awesome-${version}.tar.gz"
build() {
install -d $PKG/usr/share/fonts/TTF
install -d $PKG/usr/share/fonts/OTF
install -m644 ./webfonts/*.ttf $PKG/usr/share/fonts/TTF
install -m644 ./otfs/*.otf $PKG/usr/share/fonts/OTF
}
|