Projekty/Wsparcie > POLAUR

KDE Applications 14.12

<< < (10/31) > >>

pavbaranov:
XLVIII. Kdeedu-Cantor (KDE4.14)
PKGBUILD

--- Kod: ---# Maintainer: Andrea Scarpino <andrea@archlinux.org>

pkgname=kdeedu-cantor
pkgver=14.12.0
pkgrel=1
pkgdesc="KDE Frontend to Mathematical Software"
url="http://kde.org/applications/education/cantor/"
arch=('i686' 'x86_64')
license=('GPL' 'LGPL' 'FDL')
groups=('kde' 'kdeedu')
depends=('kdebase-runtime' 'libspectre' 'libqalculate') # analitza - reenable when ported to KF5
makedepends=('cmake' 'automoc4' 'r')
optdepends=('maxima: Maxima backend'
            'octave: Octave backend'
            'r: R backend')
install=${pkgname}.install
source=("http://download.kde.org/stable/applications/${pkgver}/src/cantor-${pkgver}.tar.xz")
sha1sums=('2c6bc0258abae6142a5abe762a184571da02a71a')

prepare() {
  mkdir build
}

build() {
  cd build
  cmake ../cantor-${pkgver} \
    -DCMAKE_BUILD_TYPE=Release \
    -DKDE4_BUILD_TESTS=OFF \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DCMAKE_SKIP_RPATH=ON
  make
}

package() {
  cd "${srcdir}"/build
  make DESTDIR="${pkgdir}" install
}
--- Koniec kodu ---
kdeedu-cantor.install

--- Kod: ---post_install() {
        xdg-icon-resource forceupdate --theme hicolor &> /dev/null
    update-desktop-database -q
}

post_upgrade() {
        post_install
}

post_remove() {
        post_install
}

--- Koniec kodu ---

pavbaranov:
XLIX.Kdesdk-cervisia (KDE4.14)
PKGBUILD

--- Kod: ---# Maintainer: Andrea Scarpino <andrea@archlinux.org>

pkgname=kdesdk-cervisia
pkgver=14.12.0
pkgrel=1
pkgdesc='CVS Frontend'
url='http://kde.org/applications/development/cervisia/'
arch=('i686' 'x86_64')
license=('GPL' 'LGPL' 'FDL')
groups=('kde' 'kdesdk')
depends=('kdebase-runtime')
makedepends=('cmake' 'automoc4')
install=${pkgname}.install
source=("http://download.kde.org/stable/applications/${pkgver}/src/cervisia-${pkgver}.tar.xz")
sha1sums=('994c89529f205be7dcd4d38d5f41bf8c84a10a22')

build() {
  mkdir build
  cd build
  cmake ../cervisia-${pkgver} \
    -DCMAKE_BUILD_TYPE=Release \
    -DKDE4_BUILD_TESTS=OFF \
    -DCMAKE_INSTALL_PREFIX=/usr
  make
}

package() {
  cd build
  make DESTDIR=$pkgdir install
}
--- Koniec kodu ---
kdesdk-cervisia.install

--- Kod: ---post_install() {
    xdg-icon-resource forceupdate --theme hicolor &> /dev/null
    update-desktop-database -q
}

post_upgrade() {
    post_install
}

post_remove() {
    post_install
}
--- Koniec kodu ---

pavbaranov:
L. Kdesdk-dolphin-plugins (KDE4.14)
PKGBUILD

--- Kod: ---# Maintainer: Andrea Scarpino <andrea@archlinux.org>

pkgname=kdesdk-dolphin-plugins
pkgver=14.12.0
pkgrel=1
pkgdesc='Extra Dolphin plugins'
url='https://projects.kde.org/projects/kde/kdesdk/dolphin-plugins'
arch=('i686' 'x86_64')
license=('GPL' 'LGPL' 'FDL')
groups=('kde' 'kdesdk')
depends=('kdebase-runtime' 'kdebase-lib')
makedepends=('cmake' 'automoc4')
optdepends=('bzr: bazaar support'
            'git: git support'
            'mercurial: hg support'
            'subversion: svn support')
install=${pkgname}.install
source=("http://download.kde.org/stable/applications/${pkgver}/src/dolphin-plugins-${pkgver}.tar.xz")
sha1sums=('e351ddf837dfa55d8d1d9ef7fe50d0114e896c1b')

build() {
  mkdir build
  cd build
  cmake ../dolphin-plugins-${pkgver} \
    -DCMAKE_BUILD_TYPE=Release \
    -DKDE4_BUILD_TESTS=OFF \
    -DCMAKE_INSTALL_PREFIX=/usr
  make
}

package() {
  cd build
  make DESTDIR=$pkgdir install
}
--- Koniec kodu ---
kdesdk-dolphin-plugins.install

--- Kod: ---post_install() {
        xdg-icon-resource forceupdate --theme hicolor &> /dev/null
}

post_upgrade() {
        post_install
}

post_remove() {
        post_install
}
--- Koniec kodu ---

pavbaranov:
LI. Kdemultimedia-ffmpegthumbs (KDE4.14)
PKGBUILD

--- Kod: ---# Maintainer: Andrea Scarpino <andrea@archlinux.org>

pkgname=kdemultimedia-ffmpegthumbs
pkgver=14.12.0
pkgrel=1
pkgdesc='FFmpeg-based thumbnail creator for video files'
url='https://projects.kde.org/projects/kde/kdemultimedia/ffmpegthumbs'
arch=('i686' 'x86_64')
license=('GPL' 'LGPL' 'FDL')
groups=('kde' 'kdemultimedia')
depends=('kdelibs' 'ffmpeg')
makedepends=('cmake' 'automoc4')
source=("http://download.kde.org/stable/applications/${pkgver}/src/ffmpegthumbs-${pkgver}.tar.xz")
sha1sums=('92c70e74b00c0366bf5d8c13cb2e0d16af3a4658')

build() {
  cd "${srcdir}"
  mkdir build
  cd build
  cmake ../ffmpegthumbs-${pkgver} \
    -DCMAKE_BUILD_TYPE=Release \
    -DKDE4_BUILD_TESTS=OFF \
    -DCMAKE_INSTALL_PREFIX=/usr
  make
}

package() {
  cd "${srcdir}"/build
  make DESTDIR="${pkgdir}" install
}
--- Koniec kodu ---

pavbaranov:
LII. Kdeutils-filelight (KDE4.14)
PKBUILD

--- Kod: ---# Maintainer: Andrea Scarpino <andrea@archlinux.org>

pkgname=kdeutils-filelight
pkgver=14.12.0
pkgrel=1
pkgdesc='View disk usage information'
url='http://kde.org/applications/utilities/filelight'
arch=('i686' 'x86_64')
license=('GPL' 'LGPL' 'FDL')
depends=('kdebase-runtime')
makedepends=('cmake' 'automoc4')
groups=('kde' 'kdeutils')
replaces=('filelight')
conflicts=('filelight')
install=${pkgname}.install
source=("http://download.kde.org/stable/applications/${pkgver}/src/filelight-${pkgver}.tar.xz")
sha1sums=('a0c2ab30482ba05aa43fa02df050183b9a2e625e')

build() {
  cd "${srcdir}"
  mkdir build
  cd build
  cmake ../filelight-${pkgver} \
    -DCMAKE_BUILD_TYPE=Release \
    -DKDE4_BUILD_TESTS=OFF \
    -DCMAKE_INSTALL_PREFIX=/usr
  make
}

package() {
  cd $srcdir/build
  make DESTDIR=$pkgdir install
}
--- Koniec kodu ---
kdeutils-filelight.install

--- Kod: ---post_install() {
        xdg-icon-resource forceupdate --theme hicolor &> /dev/null
    update-desktop-database -q
}

post_upgrade() {
        post_install
}

post_remove() {
        post_install
}
--- Koniec kodu ---

Nawigacja

[0] Indeks wiadomości

[#] Następna strona

[*] Poprzednia strona

Idź do wersji pełnej