mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
961cfc61e8
Conflicts: apper/PKGBUILD avogadro/PKGBUILD calligra-l10n/PKGBUILD calligra/PKGBUILD digikam/PKGBUILD freerdp/PKGBUILD kapudan/PKGBUILD kde-baseapps-konsole/PKGBUILD kde-gtk-config/PKGBUILD kde-l10n/PKGBUILD kde-plasma-themes/PKGBUILD kde-runtime/PKGBUILD kde-sc.md5 kde-workspace/PKGBUILD kdeedu-kalzium/PKGBUILD kdegames-kigo/PKGBUILD kdegames-libkdegames/PKGBUILD kdemultimedia-thumbnailers/PKGBUILD kdenetwork-kopete/PKGBUILD kdenetwork-kopete/kdenetwork.install kdepimlibs/PKGBUILD kdeplasma-applets-networkmanagement/PKGBUILD kdeplasma-applets-plasma-nm/PKGBUILD kdeutils-ark/PKGBUILD kdewebdev/PKGBUILD kscreen/PKGBUILD libkscreen/PKGBUILD libxklavier/PKGBUILD nepomuk-core/PKGBUILD partitionmanager/PKGBUILD support-pkg-meanwhile/PKGBUILD system-config-printer/PKGBUILD tools-pkg-akabeiclient/PKGBUILD tools-pkg-akabeicore/PKGBUILD tribe-partitionmanager/PKGBUILD tribe/PKGBUILD xscreensaver/PKGBUILD
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=1
|
|
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
|
|
}
|