mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:37:13 +08:00
34 lines
985 B
Bash
34 lines
985 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=aalib
|
|
pkgver=1.4rc5
|
|
pkgrel=7
|
|
pkgdesc="AAlib is a portable ASCII art GFX library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://aa-project.sourceforge.net/aalib/"
|
|
license=('LGPL')
|
|
depends=('glibc' 'ncurses' 'gpm' 'libx11')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/aa-project/$pkgname-$pkgver.tar.gz
|
|
aclocal-fixes.patch)
|
|
md5sums=('9801095c42bba12edebd1902bcf0a990' '863a96a6689aa7ee073ca448bc2f133d')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-1.4.0"
|
|
patch -p0 -i "${srcdir}/aclocal-fixes.patch"
|
|
./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-1.4.0"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|