1 # Maintainer: Det <nimetonmaili at gmail a-dot com>
2 # Based on [extra]'s fontsproto
7 pkgdesc="X11 font extension wire protocol (Git version)"
9 url="http://xorg.freedesktop.org/"
11 makedepends=('xorg-util-macros' 'git')
12 provides=('fontsproto=2.1.1')
13 conflicts=('fontsproto')
15 _gitroot=git://git.freedesktop.org/git/xorg/proto/${pkgname/-*}
16 _gitname=${pkgname/-*}
19 msg "Connecting to git.freedesktop.org GIT server...."
21 if [ -d ${_gitname} ] ; then
22 cd ${_gitname} && git pull origin && cd ..
23 msg "The local files are updated."
28 msg "GIT checkout done or server timeout"
30 msg "Creating build directory"
31 [ -d ${_gitname}-build ] && rm -rf ${_gitname}-build
32 cp -R ${_gitname} ${_gitname}-build
34 msg "Starting make..."
36 ./autogen.sh --prefix=/usr --disable-specs
42 make DESTDIR="${pkgdir}" install
43 install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname/-*}/COPYING"