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.
tde-packaging/arch/tde-extra/tde-style-qtcurve/PKGBUILD

44 lines
1.2 KiB

# Contributor: e1z0 <justinas at eofnet dot lt>
pkgname=tde-style-qtcurve
pkgver=14.0.10
pkgrel=1
pkgdesc="TDE Style QTCurve"
arch=('i686' 'x86_64')
url='http://scm.trinitydesktop.org/scm/git/applications/tde-style-qtcurve'
license=('GPL')
groups=('tde-extra')
depends=('tde-tdelibs')
makedepends=('pkgconfig' 'cmake')
#provides=('tde-style-qtcurve')
#conflicts=('tde-style-qtcurve')
#replaces=('tde-style-qtcurve')
options=('staticlibs' 'libtool' '!strip')
source=("https://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/main/applications/tde-style-qtcurve-trinity-${pkgver}.tar.xz")
md5sums=('b5bff2af06e5891d9b4bbeb5b3c83835')
# install=''
[ -n "$TDEDIR" ] || TDEDIR=/opt/trinity
build() {
msg "Creating out-of-source build directory: ${srcdir}/build"
mkdir -p "$srcdir/build"
cd "$srcdir/build"
msg "Starting cmake..."
cmake ${srcdir}/${pkgname}-trinity-${pkgver} \
-DCMAKE_INSTALL_PREFIX=${TDEDIR} \
-DSYSCONF_INSTALL_DIR=${TDEDIR}/etc \
-DBUILD_ALL=ON \
-DWITH_GCC_VISIBILITY=ON
msg "Building - ${pkgname}..."
make $NUMJOBS
}
package() {
msg "Packaging - $pkgname-$pkgver"
cd ${srcdir}/build
make -j1 DESTDIR="${pkgdir}" install
}