blob: 073e2ce86af117fa61a6e35dbd7e982941cb5301 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Maintainer: Joris Steyn <joris@j0r1s.nl>
# Contributor: Techlive Zheng <techlivezheng-at-gmail.com>
# This package is a build depencency for php-manpages-svn
pkgname=php-phd
pkgver=1.1.10
pkgrel=1
pkgdesc='The PHP DocBook renderer (includes pman build scripts)'
arch=('any')
url='https://wiki.php.net/doc/phd/'
license=('PHP')
depends=('php' 'php-sqlite')
makedepends=('git')
source=('git://git.php.net/phd.git#tag=RELEASE_1_1_10')
md5sums=('SKIP')
pkgver() {
cd "$srcdir"/phd
git describe --tags --always | sed -E 's/^RELEASE_//;s/([^-]*-g)/r\1/;s/_/./g;s/-/./g'
}
prepare() {
cd "$srcdir"
# todo: optionally allow dependencies for creating PEAR packages,
# not doing this by default because the whole point of this is
# generating the manpages ourselves and without the ambiguous pman
# wrapper.
#if [ ! -d fakepear ]; then
# updating the channel means having more privileges than we
# really want to have while packaging, so skip this for now
#pear channel-update doc.php.net
# this will install the package in the fakeroot environment
# so pear isn't really needed after building the package
#pear config-set preferred_state beta
#pear install --packagingroot "$srcdir"/fakepear PEAR_PackageFileManager2
#fi
}
package() {
install -d "$pkgdir"/usr/share/php/phd
cp -r "$srcdir"/phd/* "$pkgdir"/usr/share/php/phd/
# only needed when generating pman
#cp -r "$srcdir"/fakepear "$pkgdir"/usr/share/php/phd/fakepear
}
# vim:set ts=2 sw=2 et:
|