mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
671 B
Bash
21 lines
671 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
pkgname=fonteditfs
|
|
pkgver=1.2
|
|
pkgrel=1
|
|
pkgdesc="console font editor"
|
|
arch=('i686' 'x86_64')
|
|
url="http://fonteditfs.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=(ncurses)
|
|
source=("http://downloads.sourceforge.net/sourceforge/fonteditfs/fnteditfs-$pkgver.tgz")
|
|
md5sums=('1e7c827da078d41a76459439dda0d5a9')
|
|
|
|
build () {
|
|
cd $startdir/src/fnteditfs-$pkgver
|
|
make || return 1
|
|
install -D -m0755 fnteditfs $startdir/pkg/usr/bin/fnteditfs && \
|
|
install -D -m0644 fnteditfs.1 $startdir/pkg/usr/man/man1/fnteditfs.1
|
|
}
|