diff options
Diffstat (limited to 'extra/libcaca/PKGBUILD')
-rw-r--r-- | extra/libcaca/PKGBUILD | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/extra/libcaca/PKGBUILD b/extra/libcaca/PKGBUILD index bde93f54a..4e0e37f70 100644 --- a/extra/libcaca/PKGBUILD +++ b/extra/libcaca/PKGBUILD @@ -1,27 +1,28 @@ -# $Id: PKGBUILD 158970 2012-05-13 20:58:29Z jgc $ +# $Id: PKGBUILD 198132 2013-10-30 12:58:57Z allan $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=libcaca pkgver=0.99.beta18 -pkgrel=1.1 +pkgrel=2 pkgdesc="Color AsCii Art library" arch=('i686' 'x86_64' 'mips64el') -license=('LGPL') +license=('custom:WTFPL') url="http://caca.zoy.org/wiki/libcaca" depends=('imlib2' 'ncurses') -options=(!libtool !emptydirs) +options=(!emptydirs) source=(http://libcaca.zoy.org/files/libcaca/${pkgname}-${pkgver}.tar.gz) md5sums=('93d35dbdb0527d4c94df3e9a02e865cc') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd $pkgname-$pkgver ./configure --prefix=/usr --mandir=/usr/share/man \ --enable-shared --disable-doc \ - --disable-cxx --disable-gl --disable-csharp + --disable-cxx --disable-gl --disable-csharp --disable-static make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd $pkgname-$pkgver make DESTDIR="${pkgdir}" install + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/libcaca/COPYING" } |