16 lines
294 B
Bash
16 lines
294 B
Bash
|
pkgname=tarch-fonts
|
||
|
pkgver=1.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="Fonts for Tarch OS"
|
||
|
arch=('any')
|
||
|
url="https://gitcast.ru/tarch_os/tarch-fonts.git"
|
||
|
license=('GPL3')
|
||
|
|
||
|
prepare() {
|
||
|
cp -af ../fonts/. ${srcdir}
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
(find * -type f -exec install -Dm 644 "{}" "${pkgdir}/usr/share/fonts/tarhos/{}" \;)
|
||
|
}
|