mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Use cmake instead of make
This commit is contained in:
parent
e02a70afc8
commit
518e75a702
1 changed files with 3 additions and 5 deletions
8
PKGBUILD
8
PKGBUILD
|
|
@ -48,13 +48,11 @@ build() {
|
|||
cd "$srcdir/plasma-bigscreen"
|
||||
cmake -B build \
|
||||
-DCMAKE_INSTALL_PREFIX="/usr" \
|
||||
-DCMAKE_BUILD_TYPE=Release
|
||||
-DCMAKE_BUILD_TYPE=Release
|
||||
|
||||
cd build
|
||||
make
|
||||
cmake --build build --target all
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/plasma-bigscreen/build"
|
||||
make DESTDIR="$pkgdir/" install
|
||||
cmake --install "$srcdir/plasma-bigscreen/build" --prefix "$pkgdir/usr"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue