mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
28 lines
624 B
Bash
28 lines
624 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
|
||
|
pkgname=fbgetty
|
||
|
pkgver=0.1.698
|
||
|
pkgrel=1
|
||
|
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 $startdir/src/$pkgname-$pkgver
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
|
||
|
patch src/options.c <<EOF
|
||
|
33a34
|
||
|
> #include <stddef.h>
|
||
|
EOF
|
||
|
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|