mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
28 lines
912 B
Bash
28 lines
912 B
Bash
pkgname=ksvnupdater
|
|
pkgver=2.0.0
|
|
pkgrel=1
|
|
pkgdesc="ksvnupdater is a utility oriented to KDE translation teams."
|
|
url="http://www.eloihr.net/ksvnupdater"
|
|
license=('GPL')
|
|
arch=('x86_64')
|
|
depends=('kfilemetadata' 'kio' 'knotifications' 'kitemviews' 'kiconthemes' 'karchive' 'qt5-base')
|
|
makedepends=('extra-cmake-modules' 'kdoctools')
|
|
optdepends=('lokalize' 'pology' 'kdiff3' 'gettext' 'openssh' 'which')
|
|
install=${pkgname}.install
|
|
screenshot=('http://www.eloihr.net/ksvnupdater/img/ksvnupdater_update.png')
|
|
source=(http://www.eloihr.net/$pkgname/files/$pkgname-$pkgver.tar.bz2)
|
|
sha512sums=('f13493183751c880da9640df8ba978ab00e6ac858072094482d3ce858159d8d7c44c02964f850e2418cad9b3031c2d4c7d0d9a43b80e0244ce7e64687e8fe7d0')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
mkdir build && cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
|
make clean
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|