iglunix/pkgs/extra-cmake-modules/build.sh

32 lines
578 B
Bash
Raw Normal View History

2021-05-21 09:51:01 +00:00
pkgname=extra-cmake-modules
2021-07-31 09:40:18 +00:00
_ver_maj_min=5.82
pkgver=$_ver_maj_min.0
2021-05-21 09:51:01 +00:00
fetch() {
2021-07-31 09:40:18 +00:00
curl -L "https://download.kde.org/stable/frameworks/$_ver_maj_min/extra-cmake-modules-$pkgver.tar.xz" -o $pkgname-$pkgver.tar.xz
2021-05-21 09:51:01 +00:00
tar -xf $pkgname-$pkgver.tar.xz
mkdir $pkgname-$pkgver/build
}
build() {
cd $pkgname-$pkgver
cd build
cmake -G Ninja ../ \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
}
license() {
cd $pkgname-$pkgver
cat LICENSE
# cat COPYING
}