summaryrefslogtreecommitdiff
path: root/community/fbgetty/PKGBUILD
blob: ee251e138f3a645631e3befabd26cfab2666cc9c (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
# $Id: PKGBUILD 65233 2012-02-20 12:23:20Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>

pkgname=fbgetty
pkgver=0.1.698
pkgrel=4
license=("GPL")
pkgdesc="fbgetty is a console getty like mingetty, which supports framebuffers"
arch=('i686' 'x86_64')
url="http://projects.meuh.org/fbgetty"
source=('http://projects.meuh.org/fbgetty/downloads/fbgetty-'$pkgver'.tar.gz')
md5sums=('1705bc0f8f1e03fe50d324ba84ac4e56')

build()
{
  cd $srcdir/$pkgname-$pkgver

  ./configure --prefix=/usr --mandir=/usr/share/man

  patch src/options.c <<EOF
33a34
> #include <stddef.h>
EOF

  make
  make DESTDIR=$pkgdir install
  mv ${pkgdir}/usr/info ${pkgdir}/usr/share/
}