diff options
author | Erich Eckner <git@eckner.net> | 2022-11-16 15:22:27 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2022-11-16 15:22:27 +0100 |
commit | ede2de3dd7c424c92e18eca3b56174b4edd3fb4c (patch) | |
tree | 719af3028f1b9f3681b10426a9279ba1713119f1 | |
parent | da019f1dfefe76bb68afbbf83e0badd75517aaa7 (diff) | |
download | archlinuxewe-ede2de3dd7c424c92e18eca3b56174b4edd3fb4c.tar.xz |
albert: removed
-rw-r--r-- | albert/.gitignore | 1 | ||||
-rw-r--r-- | albert/PKGBUILD | 89 |
2 files changed, 0 insertions, 90 deletions
diff --git a/albert/.gitignore b/albert/.gitignore deleted file mode 100644 index 930c5edfd..000000000 --- a/albert/.gitignore +++ /dev/null @@ -1 +0,0 @@ -mirrors diff --git a/albert/PKGBUILD b/albert/PKGBUILD deleted file mode 100644 index 445be9843..000000000 --- a/albert/PKGBUILD +++ /dev/null @@ -1,89 +0,0 @@ -# Contributor: Felix Yan <felixonmars@archlinux.org> -# Contributor: Manuel Schneider <manuelschneid3r at googles mail> -# Maintainer: Erich Eckner <arch at eckner dot net> - -pkgname=albert -pkgver=0.17.2 -pkgrel=58 -pkgdesc="A sophisticated standalone keyboard launcher" -arch=('i486' 'i686' 'pentium4' 'x86_64') -url="https://github.com/albertlauncher" -license=('GPL') -_pinned_dependencies=( - 'gcc-libs=12.2.0' - 'glibc>=2.33' - 'libx11=1.8.2' - 'muparser=2.3.4' - 'python=3.10.8' - 'qt5-base=5.15.7+kde+r174' - 'qt5-charts=5.15.7' - 'qt5-declarative=5.15.7+kde+r22' - 'qt5-svg=5.15.7+kde+r9' - 'qt5-x11extras=5.15.7' -) -depends=('qt5-graphicaleffects' 'qt5-quickcontrols' "${_pinned_dependencies[@]}") -makedepends=('cmake' 'git' 'muparser' 'python' 'qt5-declarative' 'virtualbox' 'virtualbox-sdk') -optdepends=('muparser: Calculator plugin' - 'python: Python extension' - 'virtualbox: VirtualBox plugin') -source=("mirrors/albert::git+https://github.com/albertlauncher/albert.git#tag=v${pkgver}" - "mirrors/plugins::git+https://github.com/albertlauncher/plugins.git" - "mirrors/python::git+https://github.com/albertlauncher/python.git" - "mirrors/pybind11::git+https://github.com/pybind/pybind11.git") -sha512sums=('SKIP' - 'SKIP' - 'SKIP' - 'SKIP') - - -prepare() { - mkdir -p build - - cd "$srcdir/albert" - git submodule init - git config submodule.plugins.url "$srcdir/plugins" - git submodule update plugins - - cd "$srcdir/albert/plugins" - git submodule init - git config submodule.python/pybind11.url "$srcdir/pybind11" - git config submodule.python/share/modules.url "$srcdir/python" - git submodule update python/pybind11 python/share/modules -} - - -build() { - cd build - - cmake ../$pkgname \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBDIR=lib \ - -Wno-dev \ - -DBUILD_WIDGETBOXMODEL=ON \ - -DBUILD_QMLBOXMODEL=ON \ - -DBUILD_APPLICATIONS=ON \ - -DBUILD_CALCULATOR=ON \ - -DBUILD_CHROMEBOOKMARKS=ON \ - -DBUILD_DEBUG=OFF \ - -DBUILD_FILES=ON \ - -DBUILD_FIREFOXBOOKMARKS=ON \ - -DBUILD_HASHGENERATOR=ON \ - -DBUILD_MPRIS=ON \ - -DBUILD_PYTHON=ON \ - -DBUILD_SSH=ON \ - -DBUILD_SYSTEM=ON \ - -DBUILD_TEMPLATE=OFF \ - -DBUILD_TERMINAL=ON \ - -DBUILD_VIRTUALBOX=ON - - make -} - - -package() { - cd build - - make DESTDIR="$pkgdir/" install -} - -# vim:set ts=2 sw=2 et: |