bye bye libressl
This commit is contained in:
parent
879ade0254
commit
4f387bcb0b
47 changed files with 963 additions and 37 deletions
36
gui/qtbase/build.sh
Normal file
36
gui/qtbase/build.sh
Normal file
|
@ -0,0 +1,36 @@
|
|||
pkgname=qtbase
|
||||
pkgver=5.15
|
||||
|
||||
fetch() {
|
||||
curl "https://invent.kde.org/qt/qt/qtbase/-/archive/$pkgver/qtbase-$pkgver.tar.gz" -o $pkgname-$pkgver.tar.xz
|
||||
tar -xf $pkgname-$pkgver.tar.xz
|
||||
mkdir $pkgname-$pkgver/build
|
||||
mkdir $pkgname-$pkgver/.git
|
||||
}
|
||||
|
||||
build() {
|
||||
cd $pkgname-$pkgver
|
||||
cd build
|
||||
|
||||
../configure \
|
||||
-opensource \
|
||||
-confirm-license \
|
||||
-nomake examples \
|
||||
-nomake tests \
|
||||
-platform linux-clang-libc++ \
|
||||
-prefix /usr
|
||||
|
||||
gmake
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname-$pkgver
|
||||
cd build
|
||||
gmake INSTALL_ROOT=$pkgdir install
|
||||
}
|
||||
|
||||
license() {
|
||||
cd $pkgname-$pkgver
|
||||
cat LICENSE*
|
||||
# cat COPYING
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue