PKGBUILDs/community/libqtxdg/PKGBUILD

48 lines
1.2 KiB
Bash
Raw Normal View History

2017-11-25 17:10:34 +00:00
# Maintainer: Jerome Leclanche <jerome@leclan.ch>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - patch to disable LTO
pkgname=libqtxdg
2018-05-24 22:59:06 +00:00
pkgver=3.2.0
2018-09-20 13:46:39 +00:00
pkgrel=4
2017-11-25 17:10:34 +00:00
pkgdesc="Library providing freedesktop.org XDG specs implementations for Qt."
arch=("x86_64")
url="http://lxqt.org"
license=("GPL2")
depends=("libsm" "libxkbcommon-x11" "qt5-base" "qt5-svg")
makedepends=("cmake")
source=(
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc"
'0001-disable-LTO.patch'
)
sha256sums=(
2018-05-24 22:59:06 +00:00
"949134060d148df2ca4515e3759ed9c6a2fa7c51eb7a2197dd0e26a32e220553"
2017-11-25 17:10:34 +00:00
"SKIP"
"8d6d7370b40bd54bd7582138926fc258a055e30afeb8de1c3385de333542b54a"
)
validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373" # Jerome Leclanche <jerome@leclan.ch>
"7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3" # Alf Gaida <agaida@siduction.org>
)
prepare() {
cd $pkgname-$pkgver
patch -p1 -i ../0001-disable-LTO.patch
}
build() {
mkdir -p build
cd build
cmake "$srcdir/$pkgname-$pkgver" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
make
}
package() {
cd build
make DESTDIR="$pkgdir" install
}