mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
extra/conky to 1.12.1-1
This commit is contained in:
parent
2af856cdd9
commit
db17c89b19
1 changed files with 43 additions and 29 deletions
|
@ -8,23 +8,34 @@
|
|||
# - remove -D BUILD_NVIDIA=ON
|
||||
|
||||
pkgname=conky
|
||||
pkgver=1.11.6
|
||||
pkgver=1.12.1
|
||||
_gitcommit=7f84662c2c75dd939b27ce7d9fff95bc1070c1e0
|
||||
pkgrel=1
|
||||
pkgdesc='Lightweight system monitor for X'
|
||||
url='https://github.com/brndnmtthws/conky'
|
||||
license=('BSD' 'GPL')
|
||||
arch=('x86_64')
|
||||
makedepends=('cmake' 'docbook2x' 'docbook-xsl' 'man-db' 'git')
|
||||
depends=('glib2' 'lua' 'wireless_tools' 'libxdamage' 'libxinerama' 'libxft'
|
||||
'imlib2' 'libxml2' 'libpulse')
|
||||
source=("https://github.com/brndnmtthws/conky/archive/v${pkgver}.tar.gz")
|
||||
sha512sums=('f7bffcef33680d61d0171ba50b29ddda011c1c1989fc847cd4b5b60d46bed4772294eec34fd27c4d642a9c03e3cedaa31855ffc0f3b60791f4bed14ffdf7490a')
|
||||
options=('!strip' 'debug')
|
||||
depends=(
|
||||
'glibc' 'glib2' 'lua' 'wireless_tools' 'libxdamage' 'libxinerama' 'libxft' 'imlib2'
|
||||
'libxml2' 'libpulse' 'systemd-libs' 'ncurses' 'curl'
|
||||
libncursesw.so libXNVCtrl.so libsystemd.so libpulse.so libcurl.so)
|
||||
source=("git+https://github.com/brndnmtthws/conky.git#commit=${_gitcommit}?signed")
|
||||
sha512sums=('SKIP')
|
||||
b2sums=('SKIP')
|
||||
validpgpkeys=(
|
||||
'EB2E847572A71BE20F59AFBEB49ABB7270D9D4FD' # Brenden Matthews
|
||||
)
|
||||
|
||||
pkgver() {
|
||||
cd ${pkgname}
|
||||
git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
|
||||
cd ${pkgname}
|
||||
cmake \
|
||||
-B build \
|
||||
-D CMAKE_BUILD_TYPE=Release \
|
||||
-D MAINTAINER_MODE=ON \
|
||||
-D BUILD_DOCS=ON \
|
||||
|
@ -38,15 +49,18 @@ build() {
|
|||
-D BUILD_PULSEAUDIO=ON \
|
||||
-D BUILD_JOURNAL=ON \
|
||||
-D CMAKE_INSTALL_PREFIX=/usr \
|
||||
.
|
||||
-Wno-dev \
|
||||
-S .
|
||||
|
||||
make
|
||||
make -C build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
make DESTDIR="${pkgdir}" install
|
||||
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||
install -Dm644 extras/vim/syntax/conkyrc.vim "${pkgdir}"/usr/share/vim/vimfiles/syntax/conkyrc.vim
|
||||
install -Dm644 extras/vim/ftdetect/conkyrc.vim "${pkgdir}"/usr/share/vim/vimfiles/ftdetect/conkyrc.vim
|
||||
cd ${pkgname}
|
||||
make -C build DESTDIR="${pkgdir}" install
|
||||
install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
||||
install -Dm 644 extras/vim/syntax/conkyrc.vim -t "${pkgdir}"/usr/share/vim/vimfiles/syntax
|
||||
install -Dm 644 extras/vim/ftdetect/conkyrc.vim -t "${pkgdir}"/usr/share/vim/vimfiles/ftdetect
|
||||
}
|
||||
|
||||
# vim: ts=2 sw=2 et:
|
||||
|
|
Loading…
Reference in a new issue