desktop/libvisio/PKGBUILD
2018-02-04 02:11:10 +00:00

23 lines
560 B
Bash

pkgname=libvisio
pkgver=0.1.6
pkgrel=1
pkgdesc="Library for importing Visio(tm) documents"
arch=('x86_64')
url="https://wiki.documentfoundation.org/DLP/Libraries/libvisio"
license=('LGPL')
depends=('libwpd' 'libwpg' 'libxml2' 'icu' 'librevenge')
makedepends=('boost' 'gperf' 'doxygen' 'cppunit')
source=(http://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
md5sums=('b60b7f4233105261eb139d82cbf3b33a')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR=$pkgdir install
}