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.
57 lines
1.6 KiB
57 lines
1.6 KiB
3 years ago
|
# Contributor: e1z0 <justinas at eofnet dot lt>
|
||
|
|
||
|
pkgname=tde-ksplash-engine-moodin
|
||
|
pkgver=14.0.5
|
||
|
pkgrel=1
|
||
|
pkgdesc="TDE KSplash Engine Moodin"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url='http://scm.trinitydesktop.org/scm/git/applications/ksplash-engine-moodin'
|
||
|
license=('GPL')
|
||
|
groups=('tde-extra')
|
||
|
depends=('tde-tdebase')
|
||
|
makedepends=('pkgconfig' 'automake')
|
||
|
#provides=('ksplash-engine-moodin')
|
||
|
#conflicts=('ksplash-engine-moodin')
|
||
|
#replaces=('ksplash-engine-moodin')
|
||
|
options=('staticlibs' 'libtool' '!strip')
|
||
|
source=("http://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/applications/ksplash-engine-moodin-R${pkgver}.tar.bz2")
|
||
|
md5sums=('fb580976442327d34fbfcd2fcab63e9e')
|
||
|
# install=''
|
||
|
|
||
|
build() {
|
||
|
# old ruby1.8 path
|
||
|
export PATH=/opt/ruby1.8/bin:$PATH
|
||
|
## Generate config files and update with autoreconf
|
||
|
cd ${srcdir}/applications/${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} -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}/applications/${pkgname#*-} # use for libtool
|
||
|
|
||
|
make -j1 DESTDIR="${pkgdir}" install
|
||
|
}
|