-
Notifications
You must be signed in to change notification settings - Fork 1
/
PKGBUILD
30 lines (27 loc) · 842 Bytes
/
PKGBUILD
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
# Maintainer: Voobscout <[email protected]>
pkgname=xorg-xfs-fstobdf
pkgver=1.0.6
pkgrel=1
pkgdesc="X Font Server - fstobdf"
arch=('i686' 'x86_64')
license=('GPL2')
makedepends=('git' 'pkg-config' 'autoconf' 'automake' 'gettext' 'xproto' 'xtrans' 'wget')
url="http://xorg.freedesktop.org/archive/individual/app"
provides=('xorg-xfs-fstobdf')
optdepends=('xorg-xfs' 'xorg-xfstt')
source=("http://xorg.freedesktop.org/archive/individual/app/fstobdf-$pkgver.tar.gz")
sha256sums=('bb903ae76cbcb0a08a71f06762b64db7d5c2064f6e88e8dc3a604e76d0bcb93d')
options=(!strip)
build() {
cd ${srcdir}/fstobdf-${pkgver}
msg "Configuring fstobdf..."
./configure --prefix=/usr
msg "Compiling fstobdf... "
make
}
package() {
msg "Installing fstobdf"
cd ${srcdir}/fstobdf-${pkgver}
make DESTDIR=${pkgdir} install
}
# vim:set ts=2 sw=2 et: