35 lines
938 B
Bash
35 lines
938 B
Bash
# Template file for 'libcaca'
|
|
pkgname=libcaca
|
|
version=0.99.beta19
|
|
revision=6
|
|
build_style=gnu-configure
|
|
hostmakedepends="libtool automake pkg-config"
|
|
short_desc="Graphics library that outputs text instead of pixels"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
makedepends="ncurses-devel"
|
|
homepage="http://caca.zoy.org/wiki/libcaca"
|
|
license="WTFPL"
|
|
distfiles="http://caca.zoy.org/files/libcaca/libcaca-${version}.tar.gz"
|
|
checksum=128b467c4ed03264c187405172a4e83049342cc8cc2f655f53a2d0ee9d3772f4
|
|
|
|
pre_configure() {
|
|
sed -i -e 's,AM_CONFIG_HEADER,AC_CONFIG_HEADERS,' configure.ac
|
|
autoreconf -fi
|
|
}
|
|
|
|
post_install() {
|
|
rm -f ${DESTDIR}/usr/lib/*.la
|
|
}
|
|
|
|
libcaca-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/bin/caca-config
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/man/man1/caca-config.1
|
|
}
|
|
}
|