mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 20:37:15 +08:00
27 lines
611 B
Bash
27 lines
611 B
Bash
# Support packages for Desktop
|
|
|
|
# Maintainer: Manuel Tortosa <manutortosa@chakra-project.org>
|
|
|
|
pkgname=libvisio
|
|
pkgver=0.0.31
|
|
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' 'gperf' 'icu')
|
|
makedepends=('boost')
|
|
source=("http://dev-www.libreoffice.org/src/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('89a64f2c23b858275522b3fa208ae97a')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|