mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Move build preparation to build() according to https://bugs.archlinux.org/task/72532
This commit is contained in:
parent
5b05a2b798
commit
1dd65b0d7d
2 changed files with 4 additions and 9 deletions
3
.SRCINFO
3
.SRCINFO
|
|
@ -1,6 +1,6 @@
|
|||
pkgbase = plasma-bigscreen-git
|
||||
pkgdesc = A big launcher giving you easy access to any installed apps and skills.
|
||||
pkgver = r340.749c303
|
||||
pkgver = r411.7344fe3
|
||||
pkgrel = 1
|
||||
url = https://plasma-bigscreen.org/
|
||||
arch = any
|
||||
|
|
@ -31,4 +31,3 @@ pkgbase = plasma-bigscreen-git
|
|||
md5sums = SKIP
|
||||
|
||||
pkgname = plasma-bigscreen-git
|
||||
|
||||
|
|
|
|||
10
PKGBUILD
10
PKGBUILD
|
|
@ -1,6 +1,6 @@
|
|||
# Maintainer: Archie Meng <archiemeng@protonmail.com>
|
||||
pkgname=plasma-bigscreen-git
|
||||
pkgver=r340.749c303
|
||||
pkgver=r411.7344fe3
|
||||
pkgrel=1
|
||||
pkgdesc="A big launcher giving you easy access to any installed apps and skills."
|
||||
arch=('any')
|
||||
|
|
@ -41,17 +41,13 @@ pkgver() {
|
|||
printf "r%s.%s\n" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||
}
|
||||
|
||||
prepare() {
|
||||
build() {
|
||||
cd "$srcdir/plasma-bigscreen"
|
||||
cmake -B build \
|
||||
-DCMAKE_INSTALL_PREFIX="/usr" \
|
||||
-DCMAKE_BUILD_TYPE=Release
|
||||
|
||||
}
|
||||
|
||||
|
||||
build() {
|
||||
cd "$srcdir/plasma-bigscreen/build"
|
||||
cd build
|
||||
make
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue