You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.3 KiB
49 lines
1.3 KiB
# Maintainer: Calvin Morrison <mutantturkey@gmail.com>
|
|
# PKGBUILD by Pawel "l0ner" Soltys <sh4dou@gmail.com>
|
|
|
|
pkgname=trinity-dolphin
|
|
pkgver=3513
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
url='http://www.trinitydesktop.org'
|
|
license=('GPL')
|
|
groups=('trinity-apps')
|
|
pkgdesc="Trinity Do3phin file manager"
|
|
depends=('trinity-kdebase')
|
|
makedepends=('pkgconfig' 'cmake' 'imake')
|
|
options=('libtool' '!strip')
|
|
source=(http://mirror.ets.kth.se/trinity/releases/3.5.13/applications/dolphin-3.5.13.tar.gz)
|
|
md5sums=('67040323c527d83978f58c76b47a91f6')
|
|
|
|
_svnmod=applications/dolphin
|
|
|
|
build() {
|
|
|
|
msg "Setting PATH, CMAKE and Trinity Environment variables"
|
|
export CMAKE_PREFIX_PATH=/opt/qt:/opt/trinity
|
|
export CMAKE_INCLUDE_PATH=/opt/qt/include/tqt:/usr/include/dbus-1.0:/opt/trinity/include
|
|
export LD_LIBRARY_PATH=/opt/trinity/lib:/opt/trinity/lib/kde3:$LD_LIBRARY_PATH
|
|
export PKG_CONFIG_PATH=:/opt/qt/lib/pkgconfig
|
|
|
|
trinity_prefix="/opt/trinity"
|
|
|
|
cd $srcdir
|
|
msg "Creating out-of-source build directory: ${srcdir}/build"
|
|
mkdir -p build
|
|
cd build
|
|
|
|
msg "Starting cmake..."
|
|
cmake ${srcdir}/${_svnmod} \
|
|
-DCMAKE_INSTALL_PREFIX=${trinity_prefix} \
|
|
-DCMAKE_VERBOSE_MAKEFILE=ON \
|
|
-DBUILD_ALL=ON
|
|
make
|
|
}
|
|
|
|
package() {
|
|
msg "Packaging - $pkgname-$pkgver"
|
|
cd ${srcdir}/build
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|