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.
52 lines
1.4 KiB
52 lines
1.4 KiB
# Maintainer: e1z0 <justinas at eofnet dot lt>
|
|
|
|
pkgname=tde-tdeedu
|
|
pkgver=14.0.10
|
|
pkgrel=1
|
|
pkgdesc="Educational utilities for the TDE Desktop"
|
|
arch=('i686' 'x86_64')
|
|
url="https://scm.trinitydesktop.org/scm/git/${pkgname#*-}"
|
|
license=('GPL')
|
|
groups=('tde-extra')
|
|
depends=('tde-tdebase')
|
|
makedepends=('pkgconfig' 'cmake' 'texlive-bin')
|
|
optdepends=()
|
|
provides=("${pkgname#*-}")
|
|
conflicts=("trinity-${pkgname#*-}")
|
|
replaces=("trinity-${pkgname#*-}")
|
|
options=('staticlibs' 'libtool' '!emptydirs')
|
|
# install='pkgname.install'
|
|
source=("https://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/main/core/tdeedu-trinity-${pkgver}.tar.xz"
|
|
'bp000-0cb84fb9.diff')
|
|
md5sums=('3859da24d70f0d787c0cc7f41540772d'
|
|
'5ae3959dc2dc62f1f7421620b198d175')
|
|
|
|
[ -n "$TDEDIR" ] || TDEDIR=/opt/trinity
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname#*-}-trinity-${pkgver}
|
|
patch -p1 < ${srcdir}/bp000-0cb84fb9.diff
|
|
|
|
cd $srcdir
|
|
msg "Creating out-of-source build directory: ${srcdir}/build"
|
|
mkdir -p build
|
|
cd build
|
|
|
|
#export PKG_CONFIG_PATH=${TDEDIR}/lib/pkgconfig:${PKG_CONFIG_PATH}
|
|
|
|
msg "Starting cmake..."
|
|
cmake ${srcdir}/${pkgname#*-}-trinity-${pkgver} \
|
|
-DCMAKE_VERBOSE_MAKEFILE=ON \
|
|
-DCMAKE_INSTALL_PREFIX=${TDEDIR} \
|
|
-DBUILD_ALL=ON
|
|
|
|
msg "Building - ${pkgname#*-}..."
|
|
make $NUMJOBS
|
|
}
|
|
|
|
package() {
|
|
msg "Packaging - $pkgname-$pkgver"
|
|
cd ${srcdir}/build
|
|
make -j1 DESTDIR="${pkgdir}" install
|
|
}
|