updated on Wed Jan 25 08:34:36 UTC 2012
[aur-mirror.git] / gfontsel / PKGBUILD
blob84fbf17a8a75b2ec97cb213e045242affde7bc4a
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Contributor: Martin Brandenburg <brandemk@gmail.com>
7 pkgname=gfontsel
8 pkgver=1.0.0
9 pkgrel=1
10 pkgdesc="This program is a simple wrapper around the GTK+ 2 font selection dialog. It allows you to select a font. The font name is written to the standard output in the GTK+ 2 font naming scheme."
11 arch=('x86_64')
12 url="http://www.xs4all.nl/~rsmith/software/#gfontsel"
13 license=('GPL')
14 groups=()
15 depends=('gtk2' 'freetype2')
16 makedepends=()
17 provides=()
18 conflicts=()
19 replaces=()
20 backup=()
21 options=()
22 #install=
23 source=(
24 http://www.xs4all.nl/~rsmith/software/$pkgname-$pkgver.tar.gz
25 Makefile.patch
27 noextract=()
28 md5sums=(
29 'd68c4d377a7dbb01243c6c53f33618e1'
30 '95eec57e888542d66b942cbb03e5461f') #generate with 'makepkg -g'
32 build() {
33   cd "$startdir/src/$pkgname-$pkgver"
35   patch -p0 < $startdir/Makefile.patch
37   make || return 1
38   make DESTDIR="$startdir/pkg" install
41 # vim:set ts=2 sw=2 et: