blob: 08adb2fc603b94e4c4eb90213d24aac2a49d20c0 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Maintainer: Chris Severance aur.severach aATt spamgourmet dott com
set -u
_pkgnick='FontLib'
_pkgname='php-font-lib'
pkgname="${_pkgname}"
pkgver='0.5.4'
pkgrel='1'
pkgdesc="${_pkgnick} :: A library to read, parse, export and make subsets of different types of font files."
arch=('any')
url='https://github.com/PhenX/php-font-lib'
license=('LGPL')
depends=('php>=5.3')
options=('!strip')
_verwatch=("${url}/releases" "${url#*github.com}/archive/\(.*\)\.tar\.gz" 'l')
source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
sha256sums=('6950bf1ec4e9e21067c0ed5336268e0806217b5f92bf071e48047f3a50385758')
prepare() {
set -u
cd "${_pkgname}-${pkgver}"
# Putting the maps in webapps like Debian did makes no sense. What other package will use this without conflict?
sed -i -e 's:/\.\./maps/:/maps/:g' "src/${_pkgnick}/AdobeFontMetrics.php"
set +u
}
package() {
set -u
cd "${_pkgname}-${pkgver}"
install -Dpm644 'LICENSE' "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
install -d "${pkgdir}/usr/share/webapps/"
mv "src/${_pkgnick}" "${pkgdir}/usr/share/webapps/"
mv 'maps' "${pkgdir}/usr/share/webapps/${_pkgnick}/"
set +u
}
set +u
|