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.
60 lines
1.6 KiB
60 lines
1.6 KiB
3 years ago
|
# Maintainer: Michael Manley <mmanley@nasutek.com>
|
||
|
# Contributor: David C. Rankin <drankinatty at gmail dot com>
|
||
|
|
||
|
pkgname=tde-tdesdk
|
||
|
pkgver=14.0.5
|
||
|
pkgrel=1
|
||
|
arch=('i686' 'x86_64')
|
||
|
url='http://scm.trinitydesktop.org/scm/git/tdesdk'
|
||
|
license=('GPL')
|
||
|
groups=('tde-devel')
|
||
|
pkgdesc="Trinity Desktop Development Tools"
|
||
|
depends=('tde-tdebase')
|
||
|
makedepends=('pkgconfig' 'cmake' 'flex' 'subversion')
|
||
|
provides=('tdesdk')
|
||
|
conflicts=('trinity-tdesdk' 'trinity-kdesdk')
|
||
|
replaces=('trinity-tdesdk')
|
||
|
options=('staticlibs' 'libtool' '!strip')
|
||
|
source=("http://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/tdesdk-R${pkgver}.tar.bz2")
|
||
|
md5sums=('3821592afede20daf82ed2eef597955b')
|
||
|
# install=''
|
||
|
|
||
|
#prepare() {
|
||
|
# patch -Np1 -i "${srcdir}/../kautoconfig.patch"
|
||
|
#}
|
||
|
|
||
|
build() {
|
||
|
## Generate config files and update with autoreconf
|
||
|
cd ${srcdir}/${pkgname#*-}
|
||
|
|
||
|
msg "Copying system libtool files...."
|
||
|
cp /usr/share/aclocal/libtool.m4 ./admin/libtool.m4.in
|
||
|
cp /usr/share/libtool/build-aux/ltmain.sh ./admin/ltmain.sh
|
||
|
|
||
|
msg "Running make -f admin/Makefile.common ...."
|
||
|
make -f admin/Makefile.common
|
||
|
|
||
|
## configure
|
||
|
msg "Configuring - ${pkgname}..."
|
||
|
CFLAGS="${CFLAGS} -fpermissive" \
|
||
|
CXXFLAGS="${CXXFLAGS} -std=c++0x -fpermissive" \
|
||
|
./configure \
|
||
|
--prefix=${TDEDIR} \
|
||
|
--with-qt-dir=${QTDIR} \
|
||
|
--with-qt-includes=${QTDIR}/include \
|
||
|
--with-qt-libraries=${QTDIR}/lib \
|
||
|
--sysconfdir=${TDEDIR}/etc \
|
||
|
--localstatedir=/var \
|
||
|
--enable-closure
|
||
|
msg "Building - ${pkgname#*-}..."
|
||
|
make $NUMJOBS
|
||
|
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
msg "Packaging - $pkgname-$pkgver"
|
||
|
cd ${srcdir}/${pkgname#*-} # use for libtool
|
||
|
|
||
|
make -j1 DESTDIR="${pkgdir}" install
|
||
|
}
|