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.
55 lines
1.5 KiB
55 lines
1.5 KiB
13 years ago
|
# Maintainer: Calvin Morrison <mutantturkey@gmail.com>
|
||
|
|
||
13 years ago
|
pkgname=trinity-kdeedu
|
||
13 years ago
|
pkgver=3513
|
||
|
pkgrel=1
|
||
|
arch=('i686' 'x86_64')
|
||
|
url='http://www.trinitydesktop.org'
|
||
|
license=('GPL')
|
||
13 years ago
|
groups=('trinity-extras')
|
||
|
pkgdesc="Trinity educational applications and tools"
|
||
|
depends=('trinity-kdelibs')
|
||
13 years ago
|
makedepends=('pkgconfig' 'autoconf' 'automake')
|
||
13 years ago
|
optdepends=()
|
||
|
provides=($pkgname)
|
||
|
conflicts=()
|
||
|
replaces=()
|
||
13 years ago
|
options=('libtool' '!strip')
|
||
13 years ago
|
source=(http://mirror.its.uidaho.edu/pub/trinity/releases/3.5.13/kdeedu-3.5.13.tar.gz)
|
||
|
md5sums=('37a14a67c4d00babc3015c6a31698cb0')
|
||
13 years ago
|
|
||
13 years ago
|
_builddir=kdeedu
|
||
13 years ago
|
_prefix=/opt/trinity
|
||
|
|
||
|
build() {
|
||
|
|
||
|
msg "Setting Trinity Environment variables"
|
||
|
export LD_LIBRARY_PATH=${_prefix}/lib:${_prefix}/lib/trinity:$LD_LIBRARY_PATH
|
||
|
export PKG_CONFIG_PATH=${_prefix}/lib/pkgconfig:${QTDIR}/lib/pkgconfig
|
||
|
|
||
13 years ago
|
#msg "Patching..."
|
||
|
#patch -N -d ${srcdir} -p0 < kdeedu.patch
|
||
|
|
||
|
msg "Starting automake..."
|
||
13 years ago
|
cd "$srcdir/${_builddir}"
|
||
|
cp -f "/usr/share/aclocal/libtool.m4" "admin/libtool.m4.in"
|
||
|
cp -f "/usr/share/libtool/config/ltmain.sh" "admin/ltmain.sh"
|
||
|
make -f admin/Makefile.common
|
||
|
|
||
|
msg "Starting configure..."
|
||
|
./configure --with-qt-dir=${QTDIR} \
|
||
|
--prefix=${_prefix} \
|
||
13 years ago
|
--enable-closure \
|
||
13 years ago
|
--with-extra-includes=${_prefix}/include:/usr/include/dbus-1.0:${_prefix}/include/libkrandr \
|
||
|
--with-extra-libs=${_prefix}/lib:${_prefix}/lib/trinity:${_prefix}/pkgconfig
|
||
|
|
||
|
msg "Building ${pkgname}..."
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
msg "Packaging - $pkgname-$pkgver"
|
||
|
cd ${srcdir}/${_builddir}
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|