blob: 13049e9effeedd572ccd97021d210f3a21608ff3 (
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
29
30
31
32
|
# $Id$
# Maintainer: Eric BĂ©langer <eric@archlinux.org>
pkgname=aalib
pkgver=1.4rc5
pkgrel=13
pkgdesc="A portable ASCII art graphic library"
arch=('x86_64')
url="http://aa-project.sourceforge.net/aalib/"
license=('LGPL')
depends=('gpm' 'libx11')
makedepends=('libxt')
source=(https://downloads.sourceforge.net/sourceforge/aa-project/${pkgname}-${pkgver}.tar.gz
aclocal-fixes.patch)
sha1sums=('a23269e950a249d2ef93625837cace45ddbce03b'
'98d8c5a13672a8107945d694ff4520e0bc87d3e9')
prepare() {
cd ${pkgname}-1.4.0
patch -p0 -i "${srcdir}/aclocal-fixes.patch"
}
build() {
cd ${pkgname}-1.4.0
./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info
make
}
package() {
cd ${pkgname}-1.4.0
make DESTDIR="${pkgdir}" install
}
|