diff options
author | Tim Biermann <tbier@posteo.de> | 2019-08-04 16:15:51 +0200 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2019-08-04 16:15:51 +0200 |
commit | b3fd9c45e03eacd620c76c5822475df1517f953f (patch) | |
tree | 183e47584cb2ce301c052d23b77fac414554f214 /libcaca/Pkgfile | |
parent | ece0cc5f260cdac45648af76904992fe27f57b8a (diff) | |
download | contrib-b3fd9c45e03eacd620c76c5822475df1517f953f.tar.gz contrib-b3fd9c45e03eacd620c76c5822475df1517f953f.tar.xz |
libcaca: initial commit
Diffstat (limited to 'libcaca/Pkgfile')
-rw-r--r-- | libcaca/Pkgfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libcaca/Pkgfile b/libcaca/Pkgfile new file mode 100644 index 000000000..19d923b12 --- /dev/null +++ b/libcaca/Pkgfile @@ -0,0 +1,26 @@ +# Description: Color AsCii Art library +# URL: http://caca.zoy.org/wiki/libcaca +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: xorg-libx11 + +name=libcaca +version=0.99.beta19 +release=1 +source=(http://libcaca.zoy.org/files/$name/$name-$version.tar.gz) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --enable-shared \ + --disable-doc \ + --disable-cxx \ + --disable-gl \ + --disable-csharp \ + --disable-python \ + --disable-slang + + make + make DESTDIR=$PKG install +} |