mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
25 lines
791 B
Bash
25 lines
791 B
Bash
# $Id: PKGBUILD 32272 2009-03-29 23:04:29Z eric $
|
|
# Maintainer: simo <simo@archlinux.org>
|
|
# Contributor: Manolis Tzanidakis
|
|
#
|
|
|
|
pkgname=compface
|
|
pkgver=1.5.2
|
|
pkgrel=2
|
|
pkgdesc="Utils & libs to convert from/to X-Face format."
|
|
arch=(i686 x86_64)
|
|
url="http://ftp.xemacs.org/pub/xemacs/aux/"
|
|
license=('custom')
|
|
depends=('glibc')
|
|
source=($url/$pkgname-$pkgver.tar.gz LICENSE)
|
|
md5sums=('62f4f79c0861ad292ba3cf77b4c48319' '27a0d5a4d695e68b4d3eebe17db77189')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make BINDIR=$pkgdir/usr/bin LIBDIR=$pkgdir/usr/lib MANDIR=$pkgdir/usr/share/man \
|
|
INCLUDEDIR=$pkgdir/usr/include install || return 1
|
|
install -D -m644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
|
}
|
|
# vim: ts=2 sw=2 et ft=sh
|