From d6aa56d1002c56df9ab4cada4b1be0190bb5576d Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Wed, 11 Oct 2017 20:32:01 +0000 Subject: user/lxqt-admin: new package --- user/lxqt-admin/APKBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 user/lxqt-admin/APKBUILD (limited to 'user/lxqt-admin/APKBUILD') diff --git a/user/lxqt-admin/APKBUILD b/user/lxqt-admin/APKBUILD new file mode 100644 index 000000000..8af1a159b --- /dev/null +++ b/user/lxqt-admin/APKBUILD @@ -0,0 +1,42 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=lxqt-admin +pkgver=0.11.1 +pkgrel=0 +pkgdesc="Administrative tools for LXQt." +url="http://lxqt.org" +arch="all" +license="LGPL-2.1+" +depends="" +depends_dev="" +makedepends="cmake extra-cmake-modules qt5-qttools-dev kwindowsystem-dev lxqt-build-tools liblxqt-dev polkit-qt-1-dev $depends_dev" +install="" +subpackages="" +source="https://github.com/lxde/lxqt-admin/releases/download/$pkgver/lxqt-admin-$pkgver.tar.xz" +builddir="$srcdir/lxqt-admin-$pkgver" +# no tests +options="!check" + +build() { + cd "$builddir" + if [ "$CBUILD" != "$CHOST" ]; then + CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux" + fi + cmake \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DBUILD_SHARED_LIBS=True \ + -DCMAKE_BUILD_TYPE=RelWithDebugInfo \ + -DCMAKE_CXX_FLAGS="$CXXFLAGS" \ + -DCMAKE_C_FLAGS="$CFLAGS" \ + -DPULL_TRANSLATIONS=False \ + ${CMAKE_CROSSOPTS} + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="87464f4566d3080eb6d066756ae8da1420a2c93863c02d1abe6443d7b76438aadd3689d82677dbc0286f4b088b602bcb0c4bc2e82e380db4ead2992625852dc7 lxqt-admin-0.11.1.tar.xz" -- cgit v1.2.3-70-g09d2 From e4b59d4a0b87233f2ca36308c899a109d0e0eca0 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Thu, 12 Oct 2017 18:33:09 +0000 Subject: pkgdesc consistency fixes. --- user/compton-conf/APKBUILD | 2 +- user/liblxqt/APKBUILD | 2 +- user/libqtxdg/APKBUILD | 2 +- user/libsysstat/APKBUILD | 2 +- user/lxqt-admin/APKBUILD | 2 +- user/lxqt-build-tools/APKBUILD | 2 +- user/lxqt-l10n/APKBUILD | 2 +- user/lxqt-openssh-askpass/APKBUILD | 2 +- user/lxqt-policykit/APKBUILD | 2 +- user/lxqt-powermanagement/APKBUILD | 2 +- user/lxqt-qtplugin/APKBUILD | 2 +- user/lxqt-themes/APKBUILD | 2 +- user/qtermwidget/APKBUILD | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) (limited to 'user/lxqt-admin/APKBUILD') diff --git a/user/compton-conf/APKBUILD b/user/compton-conf/APKBUILD index 7445c6074..a3688ec97 100644 --- a/user/compton-conf/APKBUILD +++ b/user/compton-conf/APKBUILD @@ -3,7 +3,7 @@ pkgname=compton-conf pkgver=0.3.0 pkgrel=0 -pkgdesc="GUI configuration tool for the compton X compositor." +pkgdesc="GUI configuration tool for the compton X compositor" url="http://lxqt.org" arch="all" license="LGPL-2.1+" diff --git a/user/liblxqt/APKBUILD b/user/liblxqt/APKBUILD index beb945b19..9ba79a4d1 100644 --- a/user/liblxqt/APKBUILD +++ b/user/liblxqt/APKBUILD @@ -3,7 +3,7 @@ pkgname=liblxqt pkgver=0.11.1 pkgrel=0 -pkgdesc="Core LXQt library." +pkgdesc="Core LXQt library" url="http://lxqt.org" arch="all" license="LGPL-2.1+" diff --git a/user/libqtxdg/APKBUILD b/user/libqtxdg/APKBUILD index b42af0eb8..edde815e9 100644 --- a/user/libqtxdg/APKBUILD +++ b/user/libqtxdg/APKBUILD @@ -3,7 +3,7 @@ pkgname=libqtxdg pkgver=3.0.0 pkgrel=0 -pkgdesc="Qt5-based library implementing the XDG spec." +pkgdesc="Qt5-based library implementing the XDG spec" url="http://lxqt.org" arch="all" license="LGPL-2.1+" diff --git a/user/libsysstat/APKBUILD b/user/libsysstat/APKBUILD index e190c09f4..e9e50c8be 100644 --- a/user/libsysstat/APKBUILD +++ b/user/libsysstat/APKBUILD @@ -3,7 +3,7 @@ pkgname=libsysstat pkgver=0.4.0 pkgrel=0 -pkgdesc="Library for querying system information & statistics." +pkgdesc="Library for querying system information & statistics" url="http://lxqt.org" arch="all" license="LGPL-2.1+" diff --git a/user/lxqt-admin/APKBUILD b/user/lxqt-admin/APKBUILD index 8af1a159b..b9f8d2a18 100644 --- a/user/lxqt-admin/APKBUILD +++ b/user/lxqt-admin/APKBUILD @@ -3,7 +3,7 @@ pkgname=lxqt-admin pkgver=0.11.1 pkgrel=0 -pkgdesc="Administrative tools for LXQt." +pkgdesc="Administrative tools for LXQt" url="http://lxqt.org" arch="all" license="LGPL-2.1+" diff --git a/user/lxqt-build-tools/APKBUILD b/user/lxqt-build-tools/APKBUILD index b54e88ab3..516392d48 100644 --- a/user/lxqt-build-tools/APKBUILD +++ b/user/lxqt-build-tools/APKBUILD @@ -3,7 +3,7 @@ pkgname=lxqt-build-tools pkgver=0.4.0 pkgrel=0 -pkgdesc="Toolchain for building & packaging LXQt." +pkgdesc="Toolchain for building & packaging LXQt" url="http://lxqt.org" arch="noarch" license="BSD-3-Clause" diff --git a/user/lxqt-l10n/APKBUILD b/user/lxqt-l10n/APKBUILD index f80caf47b..2e5f97efb 100644 --- a/user/lxqt-l10n/APKBUILD +++ b/user/lxqt-l10n/APKBUILD @@ -3,7 +3,7 @@ pkgname=lxqt-l10n pkgver=0.11.99 pkgrel=0 -pkgdesc="Localization files for LXQt." +pkgdesc="Localization files for LXQt" url="http://lxqt.org" arch="noarch" license="LGPL-2.1+" diff --git a/user/lxqt-openssh-askpass/APKBUILD b/user/lxqt-openssh-askpass/APKBUILD index 07211bcd9..ceccaf625 100644 --- a/user/lxqt-openssh-askpass/APKBUILD +++ b/user/lxqt-openssh-askpass/APKBUILD @@ -3,7 +3,7 @@ pkgname=lxqt-openssh-askpass pkgver=0.11.1 pkgrel=0 -pkgdesc="Graphical LXQt utility for querying for passwords on behalf of SSH agents." +pkgdesc="Graphical LXQt utility for querying for passwords on behalf of SSH agents" url="http://lxqt.org" arch="all" license="LGPL-2.1+" diff --git a/user/lxqt-policykit/APKBUILD b/user/lxqt-policykit/APKBUILD index efb146d0e..5ac04325e 100644 --- a/user/lxqt-policykit/APKBUILD +++ b/user/lxqt-policykit/APKBUILD @@ -3,7 +3,7 @@ pkgname=lxqt-policykit pkgver=0.11.1 pkgrel=0 -pkgdesc="PolicyKit agent for LXQT." +pkgdesc="PolicyKit agent for LXQT" url="http://lxqt.org" arch="all" license="LGPL-2.1+" diff --git a/user/lxqt-powermanagement/APKBUILD b/user/lxqt-powermanagement/APKBUILD index c7a28b14f..d7d6b7667 100644 --- a/user/lxqt-powermanagement/APKBUILD +++ b/user/lxqt-powermanagement/APKBUILD @@ -3,7 +3,7 @@ pkgname=lxqt-powermanagement pkgver=0.11.1 pkgrel=0 -pkgdesc="Power management utilities for LXQt." +pkgdesc="Power management utilities for LXQt" url="http://lxqt.org" arch="all" license="LGPL-2.1+" diff --git a/user/lxqt-qtplugin/APKBUILD b/user/lxqt-qtplugin/APKBUILD index 75763f36a..b6e2984c3 100644 --- a/user/lxqt-qtplugin/APKBUILD +++ b/user/lxqt-qtplugin/APKBUILD @@ -3,7 +3,7 @@ pkgname=lxqt-qtplugin pkgver=0.11.1 pkgrel=0 -pkgdesc="Qt plugin for platform integration with LXQt." +pkgdesc="Qt plugin for platform integration with LXQt" url="http://lxqt.org" arch="all" license="LGPL-2.1+" diff --git a/user/lxqt-themes/APKBUILD b/user/lxqt-themes/APKBUILD index 249be3109..24a86414e 100644 --- a/user/lxqt-themes/APKBUILD +++ b/user/lxqt-themes/APKBUILD @@ -3,7 +3,7 @@ pkgname=lxqt-themes pkgver=0.12.0 pkgrel=0 -pkgdesc="Core themes for LXQt." +pkgdesc="Core themes for LXQt" url="http://lxqt.org" arch="noarch" license="LGPL-2.1+" diff --git a/user/qtermwidget/APKBUILD b/user/qtermwidget/APKBUILD index 9396b9e95..42d6400ae 100644 --- a/user/qtermwidget/APKBUILD +++ b/user/qtermwidget/APKBUILD @@ -3,7 +3,7 @@ pkgname=qtermwidget pkgver=0.7.1 pkgrel=0 -pkgdesc="A Qt-based terminal widget, used in QTerminal." +pkgdesc="A Qt-based terminal widget, used in QTerminal" url="http://lxqt.org" arch="all" license="GPL-2.0+" -- cgit v1.2.3-70-g09d2