summaryrefslogtreecommitdiffstats
path: root/arch/extras/autotools_PKGBUILD
diff options
context:
space:
mode:
authorPawel "l0ner" Soltys <sh4dou@gmail.com>2011-12-18 19:07:20 +0100
committerPawel "l0ner" Soltys <sh4dou@gmail.com>2011-12-18 19:07:20 +0100
commit620523010a822e93be02bdb3e375c11fe51ebae4 (patch)
tree3606450fd006fce129eca3ed6342e5f4da4c38e2 /arch/extras/autotools_PKGBUILD
parent2130815b4ab2359f9ad1024c8a5a40414710f5a9 (diff)
downloadtde-packaging-620523010a822e93be02bdb3e375c11fe51ebae4.tar.gz
tde-packaging-620523010a822e93be02bdb3e375c11fe51ebae4.zip
little modifiactions to base components PKGBUILDs,
removed dropped things added PKGBUILD templates fixed kde-style-lipstik PKGBUILD
Diffstat (limited to 'arch/extras/autotools_PKGBUILD')
-rw-r--r--arch/extras/autotools_PKGBUILD59
1 files changed, 59 insertions, 0 deletions
diff --git a/arch/extras/autotools_PKGBUILD b/arch/extras/autotools_PKGBUILD
new file mode 100644
index 000000000..da6756f37
--- /dev/null
+++ b/arch/extras/autotools_PKGBUILD
@@ -0,0 +1,59 @@
+# Maintainer: Calvin Morrison <mutantturkey@gmail.com>
+
+pkgname=trinity-pkname
+pkgver=3513
+pkgrel=1
+
+arch=('i686' 'x86_64')
+
+url='http://www.trinitydesktop.org'
+license=('GPL')
+groups=('trinity')
+pkgdesc="Trinity - pkgdesc"
+
+depends=('trinity-kdelibs')
+makedepends=('pkgconfig' 'autoconf' 'automake')
+optdepends=()
+
+provides=($pkgname)
+conflicts=()
+replaces=()
+
+options=('libtool' '!strip')
+
+source=(http://mirror.its.uidaho.edu/pub/trinity/releases/3.5.13/applications/pkname-3.5.13.tar.gz)
+md5sums=('pkgmd5')
+
+_builddir=applications/pkname
+_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
+
+ #msg "Patching..."
+ #patch -N -d ${srcdir} -p0 < pkname.patch
+
+ msg "Starting autoconf..."
+ 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} \
+ --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
+}