makefontpkg-git/PKGBUILD

27 lines
742 B
Text
Raw Permalink Normal View History

2023-11-11 08:35:33 +09:00
# Maintainer: qwjyh <urataw421 at gmail dot com>
# Contributor: danb <danielbusch1992@googlemail.com>
2015-06-25 04:45:57 +09:00
2023-11-11 08:35:33 +09:00
pkgname=makefontpkg-git
_pkgname="${pkgname%-git}"
pkgver=r28.3fed100
2015-06-25 04:45:57 +09:00
pkgrel=1
pkgdesc="Tool for creating packages from TrueType and OpenType fonts"
arch=(x86_64 i686)
2015-06-25 04:45:57 +09:00
url='http://github.com/misterdanb/makefontpkg'
license=(GPL3)
2019-04-12 23:05:01 +09:00
depends=(python3 pacman-contrib)
makedepends=(git)
2023-11-11 08:35:33 +09:00
replaces=('makefontpkg')
# options=('!strip' '!emptydirs')
source=("${_pkgname}::git+https://github.com/misterdanb/makefontpkg.git")
2015-06-25 04:45:57 +09:00
md5sums=('SKIP')
pkgver() {
cd "${_pkgname}" || exit 1
printf 'r%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
2015-06-25 04:45:57 +09:00
package() {
2023-11-11 08:35:33 +09:00
install -Dm755 "${_pkgname}/$_pkgname" "$pkgdir/usr/bin/$_pkgname"
2015-06-25 04:45:57 +09:00
}