mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 22:37:15 +08:00
29 lines
718 B
Bash
29 lines
718 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=libcaca
|
|
pkgver=0.99.beta18
|
|
pkgrel=1
|
|
pkgdesc="Color AsCii Art library"
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
url="http://caca.zoy.org/wiki/libcaca"
|
|
depends=('imlib2' 'ncurses')
|
|
options=(!libtool !emptydirs)
|
|
source=("http://libcaca.zoy.org/files/libcaca/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('93d35dbdb0527d4c94df3e9a02e865cc')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --mandir=/usr/share/man \
|
|
--enable-shared --disable-doc \
|
|
--disable-cxx --disable-gl --disable-csharp
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|