Date: Monday, May 23, 2011 @ 17:55:15 Author: andrea Revision: 124691
KDE 4.7beta1 - splitted kdegraphics Added: svgpart/ svgpart/kde-unstable/ svgpart/kde-unstable/PKGBUILD svgpart/repos/ svgpart/trunk/ ----------+ PKGBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) Added: svgpart/kde-unstable/PKGBUILD =================================================================== --- svgpart/kde-unstable/PKGBUILD (rev 0) +++ svgpart/kde-unstable/PKGBUILD 2011-05-23 21:55:15 UTC (rev 124691) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=svgpart +pkgver=4.6.80 +pkgrel=1 +pkgdesc="A KPart for viewving SVGs" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdelibs') +makedepends=('cmake' 'automoc4') +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +sha1sums=('300fc6a062ea34e6131097ae9a59e8279f3c1193') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: svgpart/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id
