From 620523010a822e93be02bdb3e375c11fe51ebae4 Mon Sep 17 00:00:00 2001 From: "Pawel \"l0ner\" Soltys" Date: Sun, 18 Dec 2011 19:07:20 +0100 Subject: little modifiactions to base components PKGBUILDs, removed dropped things added PKGBUILD templates fixed kde-style-lipstik PKGBUILD --- arch/extras/autotools_PKGBUILD | 59 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 arch/extras/autotools_PKGBUILD (limited to 'arch/extras/autotools_PKGBUILD') 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 + +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 +} -- cgit v1.2.1