From 018f946ee70600993c60a74046f417ca05bdb41b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Mon, 20 Sep 2021 17:08:32 +0200 Subject: ArchLinux: Take a newer state of pkgbuilds from Michael Manley Clean old long-term not maintained pkgbuilds. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- arch/tde-extra/tde-tdesudo/PKGBUILD | 56 +++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 arch/tde-extra/tde-tdesudo/PKGBUILD (limited to 'arch/tde-extra/tde-tdesudo/PKGBUILD') diff --git a/arch/tde-extra/tde-tdesudo/PKGBUILD b/arch/tde-extra/tde-tdesudo/PKGBUILD new file mode 100644 index 000000000..17739ab81 --- /dev/null +++ b/arch/tde-extra/tde-tdesudo/PKGBUILD @@ -0,0 +1,56 @@ +# Contributor: e1z0 + +pkgname=tde-tdesudo +pkgver=14.0.5 +pkgrel=1 +pkgdesc="TDE Sudo" +arch=('i686' 'x86_64') +url='http://scm.trinitydesktop.org/scm/git/applications/tdesudo' +license=('GPL') +groups=('tde-extra') +depends=('tde-tdebase') +makedepends=('pkgconfig' 'automake') +#provides=('tdesudo') +#conflicts=('tdesudo') +#replaces=('tdesudo') +options=('staticlibs' 'libtool' '!strip') +source=("http://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/applications/tdesudo-R${pkgver}.tar.bz2") +md5sums=('8f86b7b497a9575979b27fd2911b0106') +# 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 +} -- cgit v1.2.3