Package Details: adaptagrams-git r1249.d00ce593-1

Git Clone URL: https://aur.archlinux.org/adaptagrams-git.git (read-only, click to copy)
Package Base: adaptagrams-git
Description: A library for adaptive diagramming applications
Upstream URL: https://github.com/mjwybrow/adaptagrams
Licenses: LGPL
Submitter: mschu
Maintainer: mschu
Last Packager: mschu
Votes: 0
Popularity: 0.000000
First Submitted: 2011-12-04 21:38 (UTC)
Last Updated: 2023-12-15 22:04 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

thedemz commented on 2016-07-03 22:25 (UTC)

Had to change the PKGBUILD because of errors: # Maintainer: Michael Schubert <mschu.dev at gmail> pkgname="adaptagrams-git" pkgver=r1179.99817b7 pkgrel=1 pkgdesc="A library of tools and reusable code for adaptive diagramming applications" arch=('i686' 'x86_64') url="http://adaptagrams.sourceforge.net/" license=('LGPL') optdepends=('cairo') makedepends=('git') options=('!libtool') source=("${pkgname}::git+https://github.com/mjwybrow/adaptagrams.git") md5sums=('SKIP') pkgver() { cd "${srcdir}/${pkgname}" ( set -o pipefail git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' || printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" ) } build() { cd "${srcdir}/${pkgname}/cola" mkdir m4 || true aclocal autoreconf --install ./configure --prefix=/usr make } package() { cd "${srcdir}/${pkgname}/cola" make DESTDIR="$pkgdir" install install -m644 "libcola/exceptions.h" "${pkgdir}/usr/include/libcola/" }