# Maintainer: Luca Weiss pkgname=kde1-kdetoys pkgver=1.1.2 pkgrel=2 pkgdesc="Historical copy of the toys module of KDE 1, adapted to compile on modern systems (circa. 2016)" arch=('i686' 'x86_64') url="https://github.com/KDE/kde1-kdetoys" license=("GPL2") groups=("kde1") depends=("qt1" "kde1-kdelibs") makedepends=("cmake") _commit="16f863f984ead0f72fdbfb05062e3e603b0e674b" source=("https://github.com/KDE/$pkgname/archive/$_commit.tar.gz") sha256sums=('6a361da334367c1a79d59e28c08d20d31a28fdcc7f1c35a9a88a68aa0dfc3789') #prepare() { # cd $srcdir/$pkgname-$_commit # patch -p1 kfm/pics/CMakeLists.txt < $srcdir/kfm_CMakeLists.patch #} build() { cd $srcdir/$pkgname-$_commit mkdir -p build cd build cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_LIBRARY_PATH='/opt/kde1/lib' make } package() { cd $srcdir/$pkgname-$_commit cd build make DESTDIR="$pkgdir/" install cd .. install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING } # vim:set ts=2 sw=2 et: