blob: 2e70189c945bcb55d3b6b4cd0e2f8481bd5f66e6 (
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
|
# Maintainer: BootyBlaster
pkgname=ttf-jam-icons
pkgver=2.1
pkgrel=1
pkgdesc="A set of icons designed for web projects, illustrations, print projects, etc."
arch=('any')
url="https://jam-icons.com"
license=('MIT')
depends=('fontconfig')
source=(
"https://raw.githubusercontent.com/wannesdemeyer/jam/master/fonts/jam-icons.ttf"
"https://raw.githubusercontent.com/wannesdemeyer/jam/master/LICENSE"
)
md5sums=('e3b6396ce554c77bd9655e12ca0690ed'
'a53b17fccc67f4f5b1e52a3e389661a2')
package() {
install -d "${pkgdir}"/usr/share/fonts/TTF
install -Dm644 "${srcdir}"/jam-icons.ttf "${pkgdir}"/usr/share/fonts/TTF/jam-icons.ttf
install -d "${pkgdir}"/usr/share/licenses/${pkgname}
install -Dm644 "${srcdir}"/LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/MIT
}
|