desktop/libvisio/PKGBUILD

23 lines
551 B
Bash
Raw Normal View History

2012-11-27 06:39:18 +08:00
pkgname=libvisio
2016-03-16 21:30:53 +08:00
pkgver=0.1.5
2014-08-04 21:22:37 +08:00
pkgrel=1
2012-11-27 06:39:18 +08:00
pkgdesc="Library for importing Visio(tm) documents"
arch=('x86_64')
url="http://www.freedesktop.org/wiki/Software/libvisio"
license=('LGPL')
2015-04-29 08:30:38 +08:00
depends=('libwpd' 'libwpg' 'libxml2' 'icu' 'librevenge')
makedepends=('boost' 'gperf' 'doxygen' 'cppunit')
source=(http://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
2016-03-16 21:30:53 +08:00
md5sums=('691522167fe3b0c94becfe5d957883be')
2012-11-27 06:39:18 +08:00
build() {
2014-02-09 04:21:36 +08:00
cd $pkgname-$pkgver
./configure --prefix=/usr
2012-11-27 06:39:18 +08:00
make
}
package() {
2014-02-09 04:21:36 +08:00
cd $pkgname-$pkgver
2012-11-27 06:39:18 +08:00
make DESTDIR=$pkgdir install
}