blob: f179868f229aaf5c382398beb579d513f6e0d1fc (
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
|
# $Id: PKGBUILD 39532 2011-02-11 12:12:01Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Alois Belaska <lloyd@centrum.cz>
pkgname=fgetty
pkgver=0.7
pkgrel=3
pkgdesc="A mingetty stripped of the printfs"
arch=('i686' 'x86_64')
url='http://www.fefe.de/fgetty/'
license=('GPL')
depends=()
makedepends=('dietlibc')
options=(zipman)
source=(http://www.fefe.de/fgetty/${pkgname}-${pkgver}.tar.bz2)
md5sums=('1ecb286ffe3a87ef160eefc38e9038a5')
build() {
export PATH=$PATH:/opt/diet/bin
cd ${srcdir}/${pkgname}-${pkgver}
make
make DESTDIR=${pkgdir} install
mkdir -p $pkgdir/usr/share/
mv $pkgdir/usr/man $pkgdir/usr/share/
}
|