arch-ppa/src/leftwm-theme-git/PKGBUILD

36 lines
937 B
Bash

# Maintainer: Mautamu mautam@usa.com
pkgname=leftwm-theme-git
pkgver=r100.f168eb4
pkgrel=1
epoch=0
pkgdesc="Theme manager for LeftWM"
arch=('i686' 'x86_64')
url="https://github.com/leftwm/leftwm-theme"
license=('BSD')
depends=('leftwm' 'openssl' 'gcc-libs' 'zlib')
makedepends=('cargo' 'git')
optdepends=('dmenu: default launcher'
'feh: used to set background images'
'lemonbar: light weight bar'
'polybar: light weight bar')
provides=('leftwm-theme')
conflicts=('leftwm-theme')
source=("${pkgname}::git+https://github.com/leftwm/leftwm-theme.git")
md5sums=('SKIP')
build() {
cd $pkgname
cargo build --release
}
pkgver() {
cd $pkgname
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}" $pkgname/LICENSE
cd $pkgname/target/release
install -Dm755 leftwm-theme -t "$pkgdir"/usr/bin
}