diff options
author | Slávek Banko <[email protected]> | 2023-04-25 02:08:58 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2023-04-25 03:20:10 +0200 |
commit | 183f62d73b68c294aeea5ec453fb19a7c3caed27 (patch) | |
tree | 9e29614ba3f46e6bcd2217127c8d7ceca1ec0ed5 /arch/tde-core/tde-cmake | |
parent | fefef1b0cb5b95684809e7b3f24e67fbe25ce718 (diff) | |
download | tde-packaging-183f62d73b68c294aeea5ec453fb19a7c3caed27.tar.gz tde-packaging-183f62d73b68c294aeea5ec453fb19a7c3caed27.zip |
ArchLinux: Update for final R14.1.0.
Add pkgbuilds for several applications.
Add pkgbuilds for dependencies that
are not available on archlinuxpower.org.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'arch/tde-core/tde-cmake')
-rw-r--r-- | arch/tde-core/tde-cmake/PKGBUILD | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/arch/tde-core/tde-cmake/PKGBUILD b/arch/tde-core/tde-cmake/PKGBUILD new file mode 100644 index 000000000..2037b308c --- /dev/null +++ b/arch/tde-core/tde-cmake/PKGBUILD @@ -0,0 +1,51 @@ +# Contributor: Slávek Banko <[email protected]> + +_mod=tde-cmake-trinity +_cat=dependencies/ +_kdemod="${_mod/tde/kde}" + +pkgname="tde-${_mod/tde-}" +pkgver=14.1.0 +pkgrel=1 +pkgdesc="TDE CMake modules" +arch=('any') +url="https://scm.trinitydesktop.org/scm/git/tde-cmake" +license=('GPL') +provides=("${_mod}") +groups=('tde-core') +depends=( + 'cmake' + 'perl' + 'ninja' + 'pkgconfig' +) +makedepends=() +optdepends=() +options=('staticlibs' 'libtool' '!strip') +install= + +source=("https://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/main/${_cat}${_mod}-${pkgver}.tar.xz") +md5sums=('70bcd49a0df9b6c51c14787a762cc36e') + +[ -n "$TDEDIR" ] || TDEDIR=/opt/trinity +[ -n "$TQTDIR" ] || TQTDIR=${TDEDIR}/tqt3 + +build() { + msg "Creating out-of-source build directory: ${srcdir}/build" + mkdir -p "$srcdir/build" + cd "$srcdir/build" + + msg "Starting cmake..." + cmake ${srcdir}/${_mod}-${pkgver} \ + -GNinja \ + -DCMAKE_VERBOSE_MAKEFILE=ON + + msg "Building - ${pkgname}..." + ninja $NUMJOBS +} + +package() { + msg "Packaging - ${pkgname}-${pkgver}" + cd "$srcdir/build" + DESTDIR="$pkgdir" ninja -j1 install +} |