mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
23 lines
551 B
Bash
23 lines
551 B
Bash
pkgname=libvisio
|
|
pkgver=0.1.5
|
|
pkgrel=2
|
|
pkgdesc="Library for importing Visio(tm) documents"
|
|
arch=('x86_64')
|
|
url="http://www.freedesktop.org/wiki/Software/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=('691522167fe3b0c94becfe5d957883be')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|